        .floating-cta {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: linear-gradient(135deg, #3b82f6, #1e40af);
            color: white;
            border: none;
            padding: 1rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
            z-index: 1000;
            cursor: pointer;
        }

        @media (max-width: 768px) {
            .floating-cta {
                bottom: 1rem;
                right: 1rem;
                padding: 0.9rem 1.3rem;
            }
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.7;
            color: #333;
            background: #f5f7fb;
            overflow-x: hidden;
        }

        .container {
            display: flex;
            flex-direction: row;
            min-height: 100dvh;
        }

        /* Sidebar */
        .sidebar {
            width: 280px;
            background: linear-gradient(180deg, #0b1220 0%, #6f5617 45%, #d6a622 100%);
            padding: 2rem 1.5rem;
            position: fixed;
            height: 100dvh;
            overflow-y: auto;
            box-shadow: inset -1px 0 0 rgba(255, 255, 255, .06);
            z-index: 100;
            transition: transform 0.3s ease;
            border-right: 1px solid rgba(15, 23, 42, .08);
        }

        .sidebar::after {
            content: "";
            position: absolute;
            inset: 0;
            pointer-events: none;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 18%, rgba(255, 255, 255, 0) 40%);
        }

        .sidebar-header {
            margin-bottom: 26px;
        }

        .sidebar-label {
            font-size: 0.72rem;
            text-transform: uppercase;
            letter-spacing: 1.4px;
            color: rgba(255, 255, 255, 0.65);
            margin-bottom: 8px;
        }

        .sidebar-name {
            font-size: 1.4rem;
            font-weight: 700;
            line-height: 1.15;
            color: #ffffff;
            margin: 0;
        }

        .sidebar-role {
            font-size: 0.7rem;
            color: rgba(255, 255, 255, 0.85);
            margin-top: 8px;
            margin-bottom: 10px;
            line-height: 1.45;
        }

        .sidebar-positioning {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, .65);
            line-height: 1.35;
            margin-top: 6px;
            max-width: 220px;
        }

        .sidebar-divider {
            height: 1px;
            background: rgba(255, 255, 255, 0.15);
            margin-top: 12px;
            margin-bottom: 12px;
        }

        .sidebar-header {
            margin-bottom: 26px;
        }

        .sidebar-label {
            font-size: 0.72rem;
            text-transform: uppercase;
            letter-spacing: 1.4px;
            color: rgba(255, 255, 255, 0.65);
            margin-bottom: 8px;
        }

        .sidebar-divider {
            height: 1px;
            background: rgba(255, 255, 255, 0.15);
            margin-top: 12px;
        }

        .nav-links {
            list-style: none;
        }

        .nav-link {
            display: flex;
            align-items: center;
            gap: 0.9rem;
            color: rgba(255, 255, 255, 0.85);
            text-decoration: none;
            padding: 0.7rem 1.1rem;
            border-radius: 12px;
            margin: 0.15rem 0;
            font-weight: 500;
            transition: all 0.25s ease;
            cursor: pointer;
            margin-bottom: 8px;
            transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
        }

        .nav-link:hover,
        .nav-link.active {
            color: #ffffff;
            background: rgba(255, 255, 255, 0.06);
            transform: translateX(2px);
            border: 1px solid rgba(255, 255, 255, 0.10);
            box-shadow:
                inset 0 1px 0 rgba(255, 255, 255, 0.06),
                0 8px 20px rgba(0, 0, 0, 0.10);
            border-radius: 14px;
            position: relative;
        }

        .nav-link.active::after {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: 14px;
            pointer-events: none;
            background: linear-gradient(180deg,
                    rgba(255, 255, 255, 0.08) 0%,
                    rgba(255, 255, 255, 0.03) 45%,
                    rgba(255, 255, 255, 0) 100%);
        }

        .nav-link.active::before {
            content: "";
            position: absolute;
            left: 0;
            top: 10px;
            bottom: 10px;
            width: 3px;
            border-radius: 0 3px 3px 0;
            background: rgba(255, 255, 255, 0.9);
        }

        .nav-link:focus-visible {
            outline: 2px solid #fbbf24;
            outline-offset: 2px;
        }

        .nav-icon {
            width: 20px;
            height: 20px;
            fill: currentColor;
            flex-shrink: 0;
        }

        /* Main content */
        .main-content {
            margin-left: 280px;
            flex: 1;
            padding: 0;
            overflow: visible;
            min-height: 100dvh;
            display: flex;
            flex-direction: column;
            position: relative;
            z-index: 1;
            background: linear-gradient(180deg,
                    #ffffff 0%,
                    #f8fafc 60%,
                    #f1f5f9 100%);
        }

        .main-content::before {
            content: "";
            position: absolute;
            top: -40px;
            left: -40px;
            right: -40px;
            background: radial-gradient(circle at top,
                    rgba(59, 130, 246, 0.08),
                    transparent 60%);
            z-index: -1;
            pointer-events: none;
        }

        .content-section {
            display: none;
            background: rgba(255, 255, 255, 0.97);
            backdrop-filter: blur(20px);
            border-radius: 15px;
            padding: 0.75rem 1rem 2rem 1rem;
            border: 1px solid rgba(0, 0, 0, 0.06);
            box-shadow:
                0 20px 40px rgba(0, 0, 0, 0.08),
                0 1px 0 rgba(255, 255, 255, 0.5) inset;
            min-height: auto;
            position: relative;
            margin-bottom: 0rem;
            margin-top: 0;
            flex: 1;
        }

        .content-section.active {
            display: block;
        }

        .content-section h1 {
            font-size: 2.4rem;
            margin-top: 10px;
            margin-bottom: 18px;
            background: linear-gradient(135deg, #0f172a, #fbbf24);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 700;
            text-align: center;
            letter-spacing: -0.4px;
            line-height: 1.25;
        }

        .content-section-subtitle {
            text-align: center;
            font-size: 1.15rem;
            color: #5a5a5a;
            margin: 10px auto 0;
            font-style: normal;
            max-width: 720px;
            line-height: 1.6;
            opacity: 0.8;
        }

        .hero-badges {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }

        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 1.5rem;
            gap: 30px;
        }

        .blue-card,
        .purple-card,
        .green-card,
        .grey-card {
            background: #ffffff;
            padding: 30px;
            border-radius: 16px;
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(0, 0, 0, 0.04);
            transition: all .25s ease;
            position: relative;
            backdrop-filter: blur(4px);
        }

        .about-summary-card:hover,
        .blue-card:hover,
        .purple-card:hover,
        .green-card:hover,
        .grey-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
            transition: all .25s ease;
        }

        .about-summary-card p,
        .blue-card p,
        .purple-card p,
        .green-card p,
        .grey-card p {
            line-height: 1.7;
        }

        .blue-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 8px;
            background: linear-gradient(90deg, #2f5597, #4a6fb3);
            border-radius: 14px 14px 0 0;
        }

        .purple-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 8px;
            background: linear-gradient(90deg, #6a5acd, #8b7cf0);
            border-radius: 14px 14px 0 0;
        }

        .green-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 8px;
            background: linear-gradient(90deg, #1f9d73, #38c997);
            border-radius: 14px 14px 0 0;
        }

        .grey-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 8px;
            background: linear-gradient(90deg, #7a7a7a, #b5b5b5);
            border-radius: 14px 14px 0 0;
        }

        .card-title {
            font-size: 1.1rem;
            color: #1f2a44;
            margin-bottom: 0.5rem;
            font-weight: 700;
            padding-bottom: 0.6rem;
            border-bottom: 2px solid #e1e5ff;
            letter-spacing: 0.3px;
        }

        .card-list {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .card-list-item {
            padding: 0.45rem 0;
            color: #444;
            font-size: 0.98rem;
            line-height: 1.6;
            position: relative;
            padding-left: 16px;
        }

        .card-list-item:hover {
            color: #1e3c72;
        }

        .card-list-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0.9rem;
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background-color: #3a5fa0;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 0.95fr 1.2fr 0.95fr;
            gap: 32px;
            align-items: stretch;
            margin-top: 32px;
        }

        .about-summary-card {
            background: #ffffff;
            padding: 30px;
            border-radius: 16px;
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(0, 0, 0, 0.04);
            transition: transform 0.25s ease, box-shadow 0.25s ease;
            position: relative;
            transform: translateY(-8px);
            box-shadow: 0 18px 36px rgba(0, 0, 0, 0.09);
            backdrop-filter: blur(4px);
        }

        .about-summary-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 8px;
            background: linear-gradient(90deg, #6a5acd, #8b7cf0);
            border-radius: 14px 14px 0 0;
        }

        .about-summary-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
        }

        @media (max-width: 992px) {
            .about-grid {
                grid-template-columns: 1fr;
            }

            .about-summary-card {
                transform: none;
            }
        }

        .metric-card {
            background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
            border-radius: 12px;
            padding: 1.5rem;
            box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(15, 23, 42, .06);
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: all .25s ease;
            backdrop-filter: blur(4px);
        }

        .metric-card::before {
            content: "";
            position: absolute;
            pointer-events: none;
            inset: 0;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            opacity: 0.12;
            border-top-left-radius: 12px;
            border-top-right-radius: 12px;
            /*background: linear-gradient(90deg, #2d4a8a, #3b82f6);*/
            background: linear-gradient(180deg,
                    rgba(255, 255, 255, .55) 0%,
                    rgba(255, 255, 255, .25) 25%,
                    rgba(255, 255, 255, 0) 55%);
        }

        .metric-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 34px rgba(15, 23, 42, .08);
        }

        .metric-card::after {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at top, rgba(59, 130, 246, 0.12), transparent 60%);
            opacity: 0;
            transition: opacity 0.25s ease;
        }

        .metric-card:hover::after {
            opacity: 1;
        }

        .metric-number {
            font-variant-numeric: tabular-nums;
            font-weight: 700;
            letter-spacing: .5px;
            background: linear-gradient(90deg, #2d4a8a, #3b82f6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-size: 2.7rem;
            color: #3b63b3;
        }

        .metric-card p {
            color: #666;
            font-size: 0.95rem;
        }

        .impact-metrics {
            position: relative;
        }

        .impact-metrics::before {
            content: "";
            position: absolute;
            inset: 0;
            background-image: linear-gradient(rgba(45, 74, 138, 0.05) 1px, transparent 1px),
                linear-gradient(90deg, rgba(45, 74, 138, 0.05) 1px, transparent 1px);
            background-size: 40px 40px;
            pointer-events: none;
        }

        /* Certifications Page */
        .certs-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 2rem;
            margin-top: 1.5rem;
        }

        .cert-group {
            background: white;
            padding: 0.5rem 2.5rem;
            border-radius: 20px;
            border: 1px solid rgba(30, 60, 114, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .cert-group::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #0f172a, #fbbf24);
        }

        .cert-group:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(30, 60, 114, 0.2);
        }

        .group-title {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 2rem;
            padding-bottom: 0.75rem;
            border-bottom: 2px solid #e1e5ff;
            text-align: left;
        }

        .group-title.active {
            color: #2d4a8a;
        }

        .group-title.expired {
            color: #666;
        }

        .cert-list {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .cert-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 0.35rem 0;
            border-bottom: 1px solid #f0f2ff;
            transition: all 0.3s ease;
            margin-bottom: 5px;
            justify-content: space-between;
        }

        .cert-item:last-child {
            border-bottom: none;
        }

        .cert-item:hover {
            background: rgba(255, 255, 255, 0.5);
            padding-left: 1rem;
            border-radius: 8px;
        }

        @media (max-width: 768px) {
            .cert-item {
                flex-wrap: wrap;
                align-items: flex-start;
            }

            .cert-info {
                width: 100%;
                flex-wrap: wrap;
            }

            .cert-status {
                flex-shrink: 0;
            }
        }

        .cert-badge-blue {
            background: linear-gradient(135deg, #3b82f6, #1e40af);
            color: white;
            padding: 0.4rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            min-width: 80px;
            text-align: center;
            flex-shrink: 0;
        }

        /* Purple Badge */
        .cert-badge-purple {
            background: linear-gradient(135deg, #5f2c82, #8e44ad);
            color: white;
            padding: 0.4rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            min-width: 80px;
            text-align: center;
            flex-shrink: 0;
        }

        /* Orange Badge */
        .cert-badge-orange {
            background: linear-gradient(135deg, #ff7e00, #ffb347);
            color: white;
            padding: 0.4rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            min-width: 80px;
            text-align: center;
            flex-shrink: 0;
        }

        /* Green Badge */
        .cert-badge-green {
            background: linear-gradient(135deg, #11998e, #38ef7d);
            color: white;
            padding: 0.4rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            min-width: 80px;
            text-align: center;
            flex-shrink: 0;
        }

        /* Expired Badge */
        .cert-badge-expired {
            background: linear-gradient(135deg, #7a7a7a, #b5b5b5);
            color: white;
            padding: 0.4rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            min-width: 80px;
            text-align: center;
            flex-shrink: 0;
        }

        .cert-details {
            flex: 1;
        }

        .cert-name {
            font-size: 1.0rem;
            color: #333;
            font-weight: 500;
        }

        .cert-status {
            font-size: 11px;
            padding: 0 8px;
            border-radius: 6px;
            background: #e8f3e9;
            color: #2f7d32;
            margin-left: 8px;
        }

        .cert-info {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        /* Mobile */
        @media (max-width: 768px) {
            .certs-container {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .cert-group {
                padding: 1.5rem;
            }
        }

        /* Projects page */
        .project-header {
            margin-bottom: 1.5rem;
        }

        .card-title,
        .recognition-title,
        .project-title {
            font-size: 1.1rem;
            color: #1e3c72;
            margin-bottom: 0.5rem;
            font-weight: 700;
        }

        .project-role {
            display: inline-block;
            font-size: 0.9rem;
            color: #1e3c72;
            background: rgba(30, 60, 114, 0.08);
            padding: 0.3rem 0.8rem;
            border-radius: 999px;
            font-weight: 600;
        }

        .project-tech-outcome {
            margin-top: 1.5rem;
            font-size: 0.98rem;
            color: #222;
            border-top: 1px solid #e1e5ff;
            padding-top: 1rem;

        }

        .project-tech-outcome strong {
            color: #1e3c72;
        }

        @media (max-width: 768px) {

            .project-header {
                flex-direction: column;
                align-items: flex-start;
            }

            .card-title,
            .recognition-title,
            .project-title {
                flex-direction: column;
                align-items: flex-start;
            }

            .project-role {
                width: 100%;
            }
        }

        /* Mobile */
        @media (max-width: 768px) {
            .card-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .blue-card {
                padding: 1.75rem;
            }
        }

        /* Recognitions page */
        .recognition-quote {
            font-style: italic;
            color: #444;
            line-height: 1.6;
            margin-bottom: 18px;
        }

        .recognition-meta {
            font-size: 0.9rem;
            color: #2a4b8d;
        }

        /* Contact Page */

        #wp-contact-page {
            position: relative;
        }



        .contact-layout {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 50px;
            align-items: start;
            max-width: 1100px;
            margin: 2.5rem auto 0;
        }

        .contact-intro {
            text-align: left;
            padding: 10px 10px 10px 0;
        }

        .contact-intro h2 {
            font-size: 1.8rem;
            color: #2d4a8a;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .contact-intro p {
            color: #555;
            line-height: 1.7;
            margin-bottom: 1rem;
            max-width: 520px;
        }

        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .contact-item {
            position: relative;
            display: flex;
            align-items: center;
            gap: 18px;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 16px;
            padding: 22px 24px;
            text-decoration: none;
            box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
            transition: transform 0.25s ease, box-shadow 0.25s ease;
            overflow: hidden;
            border: 1px solid rgba(0, 0, 0, 0.04);
        }

        .contact-item::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #2d4a8a, #3b82f6);
            opacity: 0.18;
            border-top-left-radius: 16px;
            border-top-right-radius: 16px;
        }

        .contact-item:hover {
            transform: translateY(-4px);
            box-shadow:
                0 16px 35px rgba(0, 0, 0, 0.12),
                0 0 0 2px rgba(59, 130, 246, 0.08);
        }

        .contact-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: #e6edf9;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #2d4a8a;
            font-size: 1.4rem;
            flex-shrink: 0;
            transition: transform 0.2s ease;
        }

        .contact-item:hover .contact-icon {
            transform: scale(1.05);
        }

        .contact-text {
            text-align: left;
        }

        .contact-label {
            font-size: 0.9rem;
            font-weight: 600;
            color: #2d4a8a;
            margin-bottom: 4px;
        }

        .contact-value {
            font-size: 1rem;
            color: #444;
        }

        #wp-contact-page .positioning-banner {
            text-align: center;
            position: relative;
        }


        @media (max-width: 900px) {
            .contact-layout {
                grid-template-columns: 1fr;
            }

            .contact-intro {
                text-align: center;
                padding-right: 0;
            }

            .contact-text {
                text-align: left;
            }
        }

        /* Mobile toggle button */
        .mobile-toggle {
            position: fixed;
            top: 1rem;
            left: 1rem;
            z-index: 200;
            background: rgba(30, 60, 114, 0.95);
            border: none;
            color: #ffffff;
            padding: 0.75rem 1rem;
            border-radius: 999px;
            cursor: pointer;
            backdrop-filter: blur(10px);
            display: none;
        }

        .mobile-toggle:focus-visible {
            outline: 2px solid #fbbf24;
            outline-offset: 2px;
        }

        @media (max-width: 768px) {
            .sidebar {
                position: fixed;
                left: 0;
                transform: translateX(-100%);
                top: 0;
                width: 280px;
                height: 100dvh;
                z-index: 1000;
                transition: transform 0.3s ease;
                background: linear-gradient(180deg, #0f172a 0%, #fbbf24 100%);
                padding: 1.4rem 1.2rem;
            }

            .sidebar.open {
                transform: translateX(0);
                box-shadow: 4px 0 20px rgba(0, 0, 0, 0.5);
            }

            .container {
                display: block;
                min-height: auto;
            }

            .content-area {
                padding: 4px 8px 8px 0;
            }

            .main-content {
                margin-left: 0;
                padding: 0;
                overflow: visible;
                min-height: auto;
                background: linear-gradient(180deg, #ffffff 0%, #fbfbfd 100%);
                border: 1px solid rgba(15, 23, 42, 0.08);
                border-top: 1px solid rgba(0, 0, 0, .04);
                border-radius: 24px;
                box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
                margin: 0;
            }

            .content-section {
                padding: 3rem 1rem 2.5rem 1rem;
                margin-bottom: 0;
                margin-top: 0;
                min-height: auto;
            }

            .content-section h1 {
                font-size: 2rem;
            }

            h1 {
                font-size: 1.8rem !important;
                font-weight: 650;
                letter-spacing: -0.5px;
            }

            .cards-grid {
                grid-template-columns: 1fr;
                /* Single column for cards */
                gap: 1.5rem;

            }

            .card-list {
                padding: 1.5rem;
            }

            .mobile-toggle {
                display: block;
                /* Show the ☰ Menu button */
                position: fixed;
                top: 20px;
                left: 20px;
                z-index: 1100;
                background: #0f172a;
                color: white;
                padding: 10px 15px;
                border-radius: 8px;
                cursor: pointer;
            }
        }

        @media (max-width: 768px) {
            .nav-link {
                min-height: 48px;
                /* WCAG touch target */
                padding: 0.7rem 1.5rem;
                display: flex;
                align-items: center;
            }

            /* Close sidebar on outside click */
            body.menu-open {
                overflow: hidden;
            }
        }

        .expertise-label {
            display: inline-block;
            background: rgba(14, 8, 188, 0.12);
            /* Matches your card */
            color: rgb(51, 29, 29);
            padding: 6px 14px;
            border-radius: 14px;
            font-size: 0.82rem;
            font-weight: 600;
            margin-bottom: 1rem;
            box-shadow: 0 2px 8px rgba(46, 20, 219, 0.3);
        }

        .advisory-focus {
            text-align: center;
            margin: 2px 0 36px 0;
        }

        .advisory-title {
            font-size: 0.78rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #7a7a7a;
            margin-top: 8px;
            margin-bottom: 6px;
            opacity: 0.7;
        }

        .advisory-items {
            font-size: 0.95rem;
            color: #444;
        }

        .site-shell {
            position: relative;
            isolation: isolate;
        }

        .site-shell::before {
            content: "";
            position: fixed;
            inset: 0;
            pointer-events: none;
            z-index: -1;
            background:
                radial-gradient(circle at 50% 0%, rgba(59, 130, 246, 0.07), transparent 40%),
                radial-gradient(circle at 85% 20%, rgba(212, 169, 60, 0.05), transparent 30%);
        }

        .section-divider {
            display: flex;
            align-items: center;
            margin: 15px auto 35px;
        }

        .section-divider::before,
        .section-divider::after {
            content: "";
            flex: 1;
            height: 1px;
            background: #d1d5db;
        }

        .section-divider span {
            padding: 0 18px;
            font-size: 12px;
            letter-spacing: 2px;
            font-weight: 600;
            color: #374151;
        }

        .advisor-cta {
            margin-top: 50px;
            position: relative;
            padding: 70px 32px;
            box-shadow: 0 12px 30px rgba(15, 23, 42, .06);
            border-radius: 20px;
            background: linear-gradient(180deg,
                    #f8fafc 0%,
                    #eef2f7 100%);
            text-align: center;
            border: 1px solid rgba(15, 23, 42, .08);
            transition: all .25s ease;

        }

        .advisor-cta::before {
            content: "";
            position: absolute;
            top: -22px;
            left: 25%;
            right: 25%;
            height: 1px;
            background: rgba(15, 23, 42, .08);
        }

        .advisor-cta:hover {
            box-shadow: 0 14px 35px rgba(0, 0, 0, .08);
        }

        .advisor-cta h3 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 10px;
            color: #1f2937;
            letter-spacing: .02em;
        }

        .advisor-cta p {
            color: #4b5563;
            max-width: 700px;
            margin: auto;
            padding: 1rem 0;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 25px;
        }

        .cta-primary {
            background: #1e293b;
            color: white;
            padding: 14px 26px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 500;
        }

        .cta-primary:hover {
            background: #111827;
        }

        .cta-secondary {
            border: 1px solid rgba(15, 23, 42, .15);
            background: white;
            padding: 14px 26px;
            border-radius: 8px;
            text-decoration: none;
            color: #1e293b;
        }

        .cta-secondary:hover {
            background: #f3f4f6;
        }

        .advisory-areas {
            margin: 36px auto 24px auto;
            text-align: center;
            max-width: 1000px;
        }

        .advisory-areas h3 {
            margin-bottom: 16px;
            font-size: 1.2rem;
            font-weight: 600;
            color: #2f3542;
            letter-spacing: .02em;
        }

        .advisory-areas ul {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px 14px;
        }

        .advisory-areas li {
            display: inline-flex;
            align-items: center;
            padding: 8px 14px;
            border-radius: 999px;

            background: #f8fafc;
            border: 1px solid rgba(15, 23, 42, .06);

            font-size: .9rem;
            font-weight: 500;
            color: #475569;

            transition: all .18s ease;
        }


        .advisory-areas li:hover {
            background: #eef2f7;
            border-color: rgba(15, 23, 42, .08);
            transform: translateY(-1px);
            box-shadow: 0 6px 14px rgba(15, 23, 42, .08);
        }

        .page-end-divider {
            width: 80px;
            height: 2px;
            background: #e5e7eb;
            margin: 60px auto 40px;
        }


        /* =========================
   Footer Section
   ========================= */
        .site-footer {
            margin-top: 80px;
            background: linear-gradient(180deg, rgba(10, 16, 28, 0.96), rgba(7, 12, 22, 0.98));
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            color: rgba(255, 255, 255, 0.9);
            position: relative;
            z-index: 2;
            overflow: hidden;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 36px 24px 28px;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 40px;
            flex-wrap: wrap;
            /* key fix */
            box-sizing: border-box;
        }

        .footer-about,
        .footer-contact {
            flex: 1 1 320px;
            /* allows wrap on smaller widths */
            min-width: 0;
            /* prevents overflow */
            box-sizing: border-box;
        }

        .footer-about {
            max-width: 720px;
        }

        .footer-name {
            margin: 0 0 10px;
            font-size: 1.1rem;
            font-weight: 700;
            letter-spacing: 0.2px;
            color: #ffffff;
        }

        .footer-role {
            margin: 0 0 12px;
            font-size: 0.95rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.88);
        }

        .footer-tagline {
            margin: 0;
            font-size: 0.94rem;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.68);
            max-width: 62ch;
        }

        .footer-heading {
            margin: 0 0 14px;
            font-size: 0.95rem;
            font-weight: 600;
            color: #ffffff;
            letter-spacing: 0.3px;
        }

        .footer-contact {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .footer-contact a {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin: 0 0 10px;
            text-decoration: none;
            color: rgba(255, 255, 255, 0.82);
            font-size: 0.94rem;
            line-height: 1.5;
            word-break: break-word;
            transition: color 0.2s ease, transform 0.2s ease;
        }

        .footer-contact a:hover {
            color: #ffffff;
            transform: translateX(2px);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding: 16px 24px 20px;
            text-align: center;
            font-size: 0.82rem;
            color: rgba(255, 255, 255, 0.55);
        }

        /* optional global safeguard */
        body {
            overflow-x: hidden;
        }

        /* tablet */
        @media (max-width: 768px) {
            .site-footer {
                margin-top: 64px;
            }

            .footer-container {
                padding: 30px 20px 24px;
                gap: 28px;
            }

            .footer-about,
            .footer-contact {
                flex: 1 1 100%;
            }

            .footer-contact {
                margin-top: 4px;
            }

            .footer-bottom {
                padding: 14px 20px 18px;
            }
        }

        /* mobile */
        @media (max-width: 480px) {
            .footer-container {
                padding: 26px 16px 22px;
                gap: 22px;
            }

            .footer-name {
                font-size: 1rem;
            }

            .footer-role,
            .footer-tagline,
            .footer-contact a {
                font-size: 0.9rem;
            }

            .footer-bottom {
                padding: 14px 16px 18px;
                font-size: 0.78rem;
                line-height: 1.5;
            }
        }


        /* =========================
   HERO SECTION OF ALL PAGES
   ========================= */
        .page-hero {
            max-width: 900px;
            margin: 0 auto 25px;
            text-align: center;
        }

        .page-hero .hero-eyebrow {
            display: inline-block;
            margin-bottom: 14px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #4f6ecf;
        }

        .page-hero h1 {
            margin: 0 0 18px;
            font-size: 48px;
            line-height: 1.08;
            font-weight: 800;
            color: #8a6a15;
        }

        .page-hero .positioning-banner {
            max-width: 780px;
            margin: 0 auto;
            padding: 18px 24px;
            border-radius: 18px;
            background: #eaf0fb;
            color: #27344d;
            font-size: 15px;
            line-height: 1.7;
            font-weight: 600;
        }

        .page-hero .page-intro {
            max-width: 760px;
            margin: 22px auto 0;
            font-size: 16px;
            line-height: 1.75;
            color: #4c5870;
        }

        /* =========================
   HERO HOME PAGE
========================= */

        .hero-home-section {
            max-width: 1280px;
            margin: 0 auto;
            padding: 64px 28px 44px;
        }

        .hero-home-wrap {
            max-width: 1040px;
            margin: 0 auto;
            text-align: center;
        }

        .hero-proof-stack {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 16px;
            margin-bottom: 42px;
        }

        .hero-pill {
            display: inline-flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            padding: 14px 24px;
            border-radius: 20px;
            background: #e8eef9;
            border: 1px solid rgba(68, 100, 180, 0.10);
            box-shadow: 0 8px 24px rgba(35, 55, 115, 0.05);
            color: #35518f;
        }

        .hero-pill-metrics {
            max-width: 660px;
        }

        .hero-pill-positioning {
            max-width: 780px;
            font-size: 16px;
            line-height: 1.5;
            font-weight: 600;
        }

        .hero-pill-title {
            display: block;
            font-size: 15px;
            font-weight: 700;
            line-height: 1.35;
            color: #35518f;
        }

        .hero-pill-text {
            display: block;
            font-size: 15px;
            line-height: 1.55;
            font-weight: 600;
            color: #49619b;
        }

        .hero-home-title {
            max-width: 980px;
            margin: 0 auto 22px;
            font-size: 68px;
            line-height: 1.08;
            font-weight: 800;
            letter-spacing: -1.6px;
            color: #252525;
        }

        .hero-home-title .hero-home-accent {
            color: #a27816;
        }

        .hero-home-intro {
            max-width: 800px;
            margin: 0 auto 38px;
            font-size: 19px;
            line-height: 1.75;
            font-weight: 500;
            color: #5d6678;
        }

        .hero-home-actions {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 18px;
            flex-wrap: wrap;
            margin-bottom: 54px;
        }

        .hero-home-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 260px;
            padding: 18px 30px;
            border-radius: 16px;
            text-decoration: none;
            font-size: 18px;
            font-weight: 700;
            transition: transform 0.22s ease, box-shadow 0.22s ease, opacity 0.22s ease;
        }

        .hero-home-btn:hover {
            transform: translateY(-2px);
        }

        .hero-home-btn-primary {
            color: #ffffff;
            background: linear-gradient(135deg, #3d7cff, #2452c6);
            box-shadow: 0 16px 34px rgba(45, 98, 220, 0.24);
        }

        .hero-home-btn-secondary {
            color: #ffffff;
            background: linear-gradient(135deg, #6e58d8, #4d58c8);
            box-shadow: 0 16px 34px rgba(86, 82, 200, 0.20);
        }

        .hero-highlight-panel {
            margin-top: 12px;
            padding: 34px;
            border-radius: 28px;
            background: linear-gradient(135deg, #07152f, #081e49);
            box-shadow: 0 22px 60px rgba(8, 22, 58, 0.20);
        }


        .hero-highlights-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 24px;
            /* Increased gap for breathing room */
            margin-top: 40px;
            width: 100%;
            align-items: stretch;
        }

        .hero-highlight-card {
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            /* Better for varying content lengths */
            min-height: 160px;
            padding: 32px 28px;
            border-radius: 24px;

            /* Modern Glassmorphism */
            background: linear-gradient(135deg, rgba(30, 41, 59, 0.7) 0%, rgba(15, 23, 42, 0.9) 100%);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);

            /* Subtle Border - thinner and more transparent */
            border: 1px solid rgba(255, 255, 255, 0.08);

            /* Layered Shadow for depth without "muddy" look */
            box-shadow:
                0 4px 6px -1px rgba(0, 0, 0, 0.1),
                0 20px 25px -5px rgba(0, 0, 0, 0.2);

            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
        }

        /* Premium Hover Effect */
        .hero-highlight-card:hover {
            transform: translateY(-5px);
            /* Keep background dark but shift it slightly */
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            border-color: #fbbf24;
            /* Make the gold border pop */
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        }

        .hero-highlight-card:hover p {
            color: #ffffff !important;
            opacity: 1;
        }

        .hero-highlight-card:hover h3 {
            color: #ffffff !important;
        }

        /* The "Light Catch" - Add this pseudo-element for a premium sheen */
        .hero-highlight-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        }

        .hero-highlight-label {
            margin-bottom: 12px;
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: #fbbf24;
            /* Solid gold for the label only */
            opacity: 0.9;
        }

        .hero-highlight-card h3 {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 12px;
            color: #ffffff;
            line-height: 1.3;
        }

        .hero-highlight-card p {
            /* Change from 0.92 opacity to 1 or a brighter hex */
            color: #e2e8f0;
            font-size: 0.95rem;
            /* Slightly larger for clarity */
            line-height: 1.6;
            /* Better breathing room for eyes */
            font-weight: 400;
        }

        @media (max-width: 1100px) {
            .hero-highlights-grid {
                grid-template-columns: 1fr;
            }

            .hero-highlight-card {
                min-height: 112px;
            }
        }

        /* =========================
   OPTIONAL GOLD EMPHASIS
   If you want highlighted words in the title,
   wrap them with <span class="hero-home-accent">...</span>
   ========================= */

        .hero-home-accent {
            color: #a27816;
        }

        /* =========================
   RESPONSIVE
   ========================= */

        @media (max-width: 1200px) {
            .hero-home-title {
                font-size: 58px;
            }
        }

        @media (max-width: 980px) {
            .hero-home-section {
                padding: 56px 22px 34px;
            }

            .hero-home-title {
                font-size: 48px;
                line-height: 1.12;
            }

            .hero-home-intro {
                font-size: 17px;
            }

            .hero-highlight-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 640px) {
            .hero-home-title {
                font-size: 38px;
                letter-spacing: -1px;
            }

            .hero-home-intro {
                font-size: 16px;
                line-height: 1.7;
            }

            .hero-home-btn {
                width: 100%;
                min-width: 0;
            }

            .hero-pill {
                width: 100%;
            }

            .hero-highlight-panel {
                padding: 22px;
            }
        }


        /* =========================
   AI ASSISTANT SECTION
========================= */

        .assistant-shell {
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px;
            margin-top: 28px;
        }

        .assistant-intro-card,
        .assistant-chat-card {
            background: rgba(255, 255, 255, 0.72);
            backdrop-filter: blur(14px);
            border: 1px solid rgba(15, 23, 42, 0.08);
            border-radius: 24px;
            box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
        }

        .assistant-intro-card {
            padding: 24px;
        }

        .assistant-intro-header {
            display: flex;
            align-items: flex-start;
            gap: 16px;
        }

        .assistant-icon-wrap {
            width: 54px;
            height: 54px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(59, 130, 246, 0.22));
            flex-shrink: 0;
        }

        .assistant-title {
            margin: 0 0 8px;
            font-size: 1.35rem;
            font-weight: 700;
            color: #0f172a;
        }

        .assistant-subtitle {
            margin: 0;
            color: #475569;
            line-height: 3.2;
        }

        .assistant-suggested-prompts {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: left;
            align-items: center;
            padding: 0 12px 2px;
        }


        /*
        .prompt-label {
            background: rgba(37, 99, 235, 0.05);
            color: #1d4ed8;
            transition: all 0.22s ease;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 999px;
            margin-right: 10px;
        }*/

        .prompt-label {
            flex: 0 0 auto;
            border-radius: 16px;
            border: 1px solid transparent;
            font: inherit;
            font-size: 0.75rem;
            font-weight: 700;
            white-space: nowrap;
            transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
            background: linear-gradient(135deg, #3f3f3f 0%, #454646 100%);
            color: #ffffff;
            padding: 3px 9px;
            min-width: 72px;
            box-shadow: 0 10px 24px rgba(37, 99, 235, 0.24);
        }

        .assistant-prompt-chip {
            background: #f1f5f9;
            color: #475569;
            border: 1px solid rgba(37, 99, 235, 0.16);
            border-radius: 999px;
            padding: 7px 12px;
            cursor: pointer;
            font-size: 0.73rem;
            font-weight: 600;
        }

        .assistant-prompt-chip:hover {
            background: rgba(37, 99, 235, 0.1);
            transform: translateY(-1px);
        }

        .assistant-chat-card {
            padding: 0;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            flex: 1 1 auto;
            min-height: 0;
            padding-bottom: 0;
            background: transparent;
            backdrop-filter: none;
            border: none;
            box-shadow: none;
            border-radius: 0;
        }

        .assistant-chat-card.is-empty {
            flex: 0 0 auto;
            min-height: auto;
        }

        .assistant-bottom-dock {
            position: fixed;
            bottom: 0;
            z-index: 12;
            margin: 0;
            border-radius: 28px 28px 0 0;
            border: 1px solid rgba(255, 255, 255, 0.58);
            border-bottom: none;
            background:
                radial-gradient(circle at top right, rgba(59, 130, 246, 0.10), transparent 34%),
                linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(248, 250, 252, 0.94) 100%);
            box-shadow:
                0 16px 32px rgba(15, 23, 42, 0.08),
                0 2px 10px rgba(59, 130, 246, 0.04),
                inset 0 1px 0 rgba(255, 255, 255, 0.82);
            backdrop-filter: blur(18px);
            opacity: 0;
            pointer-events: none;
            transform: translateY(8px);
            transition: opacity 0.18s ease, transform 0.18s ease;
        }

        body.assistant-dock-visible .assistant-bottom-dock {
            opacity: 1;
            pointer-events: auto;
            transform: translateY(0);
        }

        body.assistant-dock-visible.assistant-empty-state .assistant-bottom-dock {
            bottom: auto;
            top: 58%;
            transform: translateY(-50%);
        }

        .assistant-control-panel {
            display: flex;
            flex-direction: column;
            gap: 8px;
            padding: 12px 12px 8px;
            background: transparent;
        }

        .assistant-pending-request {
            display: none;
            align-items: center;
            padding: 2px 4px 0;
            min-height: 24px;
        }

        .assistant-pending-request.visible {
            display: flex;
        }

        .assistant-pending-status {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: #64748b;
            font-size: 0.84rem;
            font-weight: 600;
            white-space: nowrap;
            justify-content: center;
        }

        .assistant-status-dot {
            width: 10px;
            height: 10px;
            border-radius: 999px;
            background: #22c55e;
            box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.12);
        }

        .assistant-status-dot.loading {
            background: #f59e0b;
            box-shadow: 0 0 0 6px rgba(245, 158, 11, 0.12);
        }

        .assistant-status-dot.error {
            background: #ef4444;
            box-shadow: 0 0 0 6px rgba(239, 68, 68, 0.12);
        }

        .assistant-toolbar-actions {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: nowrap;
            justify-content: flex-end;
        }

        .assistant-primary-btn,
        .assistant-secondary-btn {
            flex: 0 0 auto;
            height: 48px;
            border-radius: 14px;
            border: 1px solid transparent;
            font: inherit;
            font-size: 0.93rem;
            font-weight: 600;
            white-space: nowrap;
            cursor: pointer;
            transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
        }

        .assistant-icon-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0;
            padding: 0;
        }

        .assistant-btn-icon {
            width: 20px;
            height: 20px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex: 0 0 auto;
        }

        .assistant-btn-icon svg {
            width: 20px;
            height: 20px;
            stroke: currentColor;
            fill: none;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .assistant-secondary-btn {
            background: #f1f5f9;
            color: #475569;
            border-color: rgba(148, 163, 184, 0.22);
            width: 48px;
            min-width: 48px;
            box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
        }

        .assistant-secondary-btn:hover {
            background: #e2e8f0;
            color: #334155;
            border-color: rgba(148, 163, 184, 0.32);
            transform: translateY(-1px);
        }

        .assistant-secondary-btn:active {
            transform: translateY(0);
        }

        .assistant-secondary-btn:focus-visible {
            outline: none;
            box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.10);
        }

        .assistant-voice-btn {
            position: relative;
            width: 58px;
            min-width: 58px;
            border-radius: 18px;
        }

        .assistant-voice-btn.is-selected,
        .assistant-toggle-btn.is-selected {
            background: #c7dcff;
            color: #1d4ed8;
            border-color: rgba(59, 130, 246, 0.38);
            box-shadow: 0 8px 18px rgba(37, 99, 235, 0.12);
        }

        .assistant-voice-btn.is-in-use,
        .assistant-toggle-btn.is-in-use {
            background: #a9c8ff;
            color: #1d4ed8;
            border-color: rgba(59, 130, 246, 0.5);
            box-shadow: 0 10px 24px rgba(37, 99, 235, 0.18);
        }

        .assistant-voice-btn::after {
            content: "";
            position: absolute;
            inset: -6px;
            border-radius: 24px;
            border: 1px solid rgba(59, 130, 246, 0.26);
            opacity: 0;
            transform: scale(0.88);
            pointer-events: none;
        }

        .assistant-voice-btn.is-in-use {
            animation: micButtonPulse 1.6s ease-in-out infinite;
        }

        .assistant-voice-btn.is-in-use .assistant-btn-icon {
            animation: micIconPulse 1.1s ease-in-out infinite;
        }

        .assistant-voice-btn.is-in-use::after {
            opacity: 1;
            animation: micRingPulse 1.6s ease-out infinite;
        }

        .assistant-toggle-btn.is-in-use .assistant-btn-icon {
            animation: speakerWave 1.1s ease-in-out infinite;
        }

        .assistant-toggle-btn.is-disabled {
            opacity: 0.6;
        }

        .assistant-toggle-btn.is-disabled,
        .assistant-voice-btn.is-blocked {
            cursor: not-allowed;
        }

        .assistant-voice-btn.is-blocked {
            background: #f8fafc;
            color: #64748b;
            border-color: rgba(148, 163, 184, 0.26);
            box-shadow: 0 8px 18px rgba(148, 163, 184, 0.12);
        }

        .assistant-primary-btn {
            background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
            color: #ffffff;
            width: 52px;
            min-width: 52px;
            box-shadow: 0 10px 24px rgba(37, 99, 235, 0.24);
        }

        .assistant-primary-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 14px 28px rgba(37, 99, 235, 0.30);
        }

        .assistant-primary-btn:active {
            transform: translateY(0);
            box-shadow: 0 8px 18px rgba(37, 99, 235, 0.22);
        }

        .assistant-primary-btn:focus-visible {
            outline: none;
            box-shadow:
                0 0 0 4px rgba(37, 99, 235, 0.14),
                0 10px 24px rgba(37, 99, 235, 0.24);
        }

        .assistant-primary-btn:disabled {
            opacity: 0.65;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }

        .assistant-messages {
            max-height: none;
            overflow-y: visible;
            padding: 22px 22px 0;
            display: flex;
            flex-direction: column;
            gap: 14px;
            background: white;
            flex: 1 1 auto;
        }

        .assistant-messages.is-empty {
            flex: 0 0 auto;
            min-height: 0;
            padding-top: 0;
            padding-bottom: 0;
        }

        .assistant-message {
            display: flex;
            gap: 12px;
            align-items: center;
            background: white;
        }

        .assistant-message-user {
            flex-direction: row-reverse;
        }

        .assistant-avatar {
            width: 40px;
            height: 40px;
            min-width: 40px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.82rem;
            font-weight: 800;
            letter-spacing: 0.04em;
        }

        .assistant-message-bot .assistant-avatar {
            background: linear-gradient(135deg, rgba(37, 99, 235, 0.14), rgba(59, 130, 246, 0.22));
            color: #1d4ed8;
        }

        .assistant-message-user .assistant-avatar {
            background: linear-gradient(135deg, rgba(15, 23, 42, 0.1), rgba(30, 41, 59, 0.16));
            color: #0f172a;
        }

        .assistant-bubble,
        .assistant-bubble * {
            font-family: inherit;
            font-size: 0.9rem;
            line-height: 1.6;
            font-weight: 400;
            white-space: pre-wrap;
        }

        .assistant-bubble ul {
            margin: 6px 0 10px 18px;
            padding: 0;
        }

        .assistant-bubble li {
            margin: 1px 0;
            padding: 0;
            line-height: 1.4;
        }

        .assistant-bubble p {
            margin: 6px 0;
        }

        .assistant-bubble p+ul {
            margin-top: 4px;
        }

        .assistant-bubble li p {
            margin: 0;
            /* 🔥 removes double spacing */
            display: inline;
            /* keeps text compact */
        }

        .assistant-bubble li::marker {
            font-size: 0.8em;
        }

        .assistant-bubble strong,
        .assistant-bubble b {
            font-weight: 600;
        }

        .assistant-bubble .section-title {
            display: block;
            margin-top: 10px;
            margin-bottom: 4px;
            font-weight: 600;
        }

        .assistant-bubble br+br {
            display: none;
            /* prevents double spacing */
        }

        .assistant-message-bot .assistant-bubble {
            background: white;
            display: block;
            white-space: normal;
        }

        .assistant-message-user .assistant-bubble {
            background: linear-gradient(135deg, #e0edff 0%, #c7dcff 100%);
            color: #1e3a8a;
            border: 1px solid rgba(59, 130, 246, 0.25);
            border-radius: 18px;
            padding: 10px 14px;
            line-height: 1.6;
            font-size: 0.92rem;
            font-weight: 500;
            word-break: break-word;
            white-space: pre-wrap;
            justify-content: flex-end;
            max-width: 60%;
            box-shadow: 0 4px 12px rgba(37, 99, 235, 0.10);
        }

        .assistant-bubble a {
            color: #1d4ed8;
            font-weight: 700;
            text-decoration: none;
        }

        .assistant-bubble a:hover {
            text-decoration: underline;
        }

        .assistant-input-row {
            display: flex;
            align-items: stretch;
            gap: 12px;
            padding: 0;
            border-radius: 0;
            border: none;
            background: transparent;
            box-shadow: none;
        }

        .assistant-input {
            flex: 1 1 auto;
            min-width: 0;
            min-height: 54px;
            max-height: 180px;
            resize: vertical;
            border-radius: 18px;
            border: 1px solid rgba(59, 130, 246, 0.18);
            padding: 14px 16px;
            font: inherit;
            font-size: 0.92rem;
            line-height: 1.45;
            color: #0f172a;
            background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
            outline: none;
            box-shadow:
                inset 0 1px 2px rgba(15, 23, 42, 0.04),
                0 8px 20px rgba(148, 163, 184, 0.08);
            transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
            overflow-y: auto;
        }

        .assistant-input::placeholder {
            color: #64748b;
        }

        .assistant-input:focus {
            border-color: rgba(37, 99, 235, 0.6);
            background: #ffffff;
            box-shadow:
                0 0 0 4px rgba(37, 99, 235, 0.10),
                inset 0 1px 2px rgba(15, 23, 42, 0.04);
        }

        .assistant-footnote {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 16px;
            padding: 10px 12px 8px;
            color: #64748b;
            font-size: 0.82rem;
        }

        .assistant-footnote-text {
            flex: 0 1 auto;
            text-align: center;
        }

        .assistant-clear-icon {
            appearance: none;
            width: 34px;
            min-width: 34px;
            height: 34px;
            border-radius: 999px;
            border: 1px solid rgba(148, 163, 184, 0.16);
            background: rgba(255, 255, 255, 0.78);
            color: #94a3b8;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.2s ease, color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
        }

        .assistant-clear-icon svg {
            width: 15px;
            height: 15px;
            stroke: currentColor;
            fill: none;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .assistant-clear-icon.visible {
            opacity: 1;
            pointer-events: auto;
        }

        .assistant-footnote .assistant-clear-icon {
            display: none;
        }

        .assistant-clear-icon:hover {
            color: #64748b;
            border-color: rgba(100, 116, 139, 0.26);
            background: #f8fbff;
            transform: translateY(-1px);
        }

        .assistant-composer-actions {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: nowrap;
        }

        .assistant-typing {
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .assistant-typing-with-text,
        .assistant-status-inline {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: #64748b;
            font-size: 0.86rem;
            font-weight: 600;
            white-space: nowrap;
        }

        .assistant-status-inline[data-type="error"] {
            color: #b45309;
        }

        .assistant-typing span {
            width: 6px;
            height: 6px;
            border-radius: 999px;
            background: #f59e0b;
            animation: assistantPulse 1.2s infinite ease-in-out;
        }

        .assistant-typing span:nth-child(1) {
            background: #f59e0b;
        }

        .assistant-typing span:nth-child(2) {
            width: 8px;
            height: 8px;
            background: #3b82f6;
            animation-delay: 0.15s;
        }

        .assistant-typing span:nth-child(3) {
            width: 10px;
            height: 10px;
            background: #22c55e;
            animation-delay: 0.3s;
        }

        @keyframes assistantPulse {

            0%,
            80%,
            100% {
                transform: scale(0.7);
                opacity: 0.5;
            }

            40% {
                transform: scale(1);
                opacity: 1;
            }
        }

        @keyframes micButtonPulse {

            0%,
            100% {
                transform: scale(1);
                box-shadow: 0 10px 24px rgba(37, 99, 235, 0.14);
            }

            50% {
                transform: scale(1.02);
                box-shadow: 0 12px 28px rgba(37, 99, 235, 0.18);
            }
        }

        @keyframes micRingPulse {
            0% {
                opacity: 0.5;
                transform: scale(0.94);
            }

            100% {
                opacity: 0;
                transform: scale(1.14);
            }
        }

        @keyframes micIconPulse {

            0%,
            100% {
                transform: scale(1);
                opacity: 0.88;
            }

            50% {
                transform: scale(1.14);
                opacity: 1;
            }
        }

        @keyframes speakerWave {

            0%,
            100% {
                transform: scale(1);
                opacity: 0.8;
            }

            50% {
                transform: scale(1.12);
                opacity: 1;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .assistant-voice-btn.is-in-use,
            .assistant-voice-btn.is-in-use::after,
            .assistant-voice-btn.is-in-use .assistant-btn-icon,
            .assistant-toggle-btn.is-in-use .assistant-btn-icon {
                animation: none !important;
            }
        }

        @media (max-width: 768px) {
            .assistant-bottom-dock {
                bottom: 0;
                border-radius: 24px 24px 0 0;
            }

            .assistant-intro-header {
                flex-direction: column;
            }

            .assistant-input-row {
                flex-direction: column;
                gap: 14px;
                padding: 0;
            }

            .assistant-control-panel {
                padding: 12px 12px 10px;
                gap: 14px;
            }

            .assistant-input {
                width: 100%;
                min-height: 52px;
                padding: 16px 16px;
                border-radius: 18px;
            }


            .assistant-primary-btn,
            .assistant-secondary-btn {
                width: 100%;
                min-width: 0;
                justify-content: center;
            }

            .assistant-bubble {
                max-width: 100%;
            }

            .assistant-composer-actions {
                width: 100%;
                display: grid;
                grid-template-columns: repeat(3, minmax(0, 1fr));
                gap: 8px;
                flex-wrap: wrap;
            }

            .assistant-footnote {
                padding: 0 12px 6px;
                text-align: center;
            }

        }


        /* =========================
   AI ASSISTANT Attention Mechanism
========================= */
        .ai-assistant-fab {
            position: fixed;
            right: 24px;
            bottom: 24px;
            z-index: 9999;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 18px;
            border-radius: 999px;
            text-decoration: none;
            color: #ffffff;
            font-size: 0.95rem;
            font-weight: 700;
            letter-spacing: 0.2px;
            background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 55%, #2563eb 100%);
            border: 1px solid rgba(255, 255, 255, 0.14);
            box-shadow:
                0 12px 30px rgba(37, 99, 235, 0.28),
                0 6px 18px rgba(0, 0, 0, 0.20);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            transition:
                transform 0.22s ease,
                box-shadow 0.22s ease,
                opacity 0.22s ease;
        }

        .ai-assistant-fab:hover {
            transform: translateY(-3px);
            box-shadow:
                0 16px 36px rgba(37, 99, 235, 0.34),
                0 8px 22px rgba(0, 0, 0, 0.24);
        }

        .ai-assistant-fab.attention {
            animation: aiAssistantPulse 1.8s ease-in-out 2;
        }

        @keyframes aiAssistantPulse {
            0% {
                transform: translateY(0) scale(1);
                box-shadow:
                    0 12px 30px rgba(37, 99, 235, 0.28),
                    0 0 0 0 rgba(59, 130, 246, 0.55);
            }

            50% {
                transform: translateY(0) scale(1.04);
                box-shadow:
                    0 16px 36px rgba(37, 99, 235, 0.34),
                    0 0 0 12px rgba(59, 130, 246, 0);
            }

            100% {
                transform: translateY(0) scale(1);
                box-shadow:
                    0 12px 30px rgba(37, 99, 235, 0.28),
                    0 0 0 0 rgba(59, 130, 246, 0);
            }
        }

        .ai-assistant-icon {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.14);
            font-size: 1rem;
            line-height: 1;
            flex-shrink: 0;
        }

        .ai-assistant-text {
            white-space: nowrap;
        }

        @media (max-width: 768px) {
            .ai-assistant-fab {
                right: 16px;
                bottom: 16px;
                padding: 12px 15px;
                gap: 8px;
                font-size: 0.88rem;
            }

            .ai-assistant-icon {
                width: 24px;
                height: 24px;
                font-size: 0.9rem;
            }
        }

        /* ---------------------------
       Highlight area navigated to either from the agent or from within
    --------------------------- */

        .agent-highlight-target {
            outline: 3px solid rgba(59, 130, 246, 0.9);
            outline-offset: 6px;
            border-radius: 12px;
            box-shadow: 0 0 0 8px rgba(59, 130, 246, 0.12);
            transition: all 0.35s ease;
        }

        .agent-highlight-nav {
            box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.25);
            border-radius: 10px;
            transition: all 0.35s ease;
        }

        body.agent-request .content-section.active {
            scroll-margin-top: 24px;
        }

        /* Sources container */
        .assistant-sources {
            margin-top: 10px;
            padding-top: 6px;
            border-top: 1px solid rgba(148, 163, 184, 0.22);
            background: white;
            width: 100%;
            min-width: 0;
            overflow: hidden;
        }

        /* References heading */
        .assistant-sources-title {
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: #94a3b8;
            margin: 0 0 4px 0;
            background: white;
            line-height: 1.3;
        }

        /** DND: Unblock this area and comment 4 classes below, if we wanted to debug with data-tags, data-topics, Matched on under REFERENCES section.
        i.e. Uncomment this along with related javascript.
        .assistant-source-list {
            margin: 0;
            padding-left: 18px;
        }

        .assistant-source-item {
            margin: 0 0 8px 0;
            color: black;
            padding: 10px 0;
            border-top: 1px solid rgba(148, 163, 184, 0.22);
        }

        .assistant-source-link {
            font-weight: 500;
            text-decoration: none;
        }

        .assistant-source-score,
        .assistant-source-why,
        .assistant-source-topics,
        .assistant-source-tags {
            margin-top: 4px;
            font-size: 12px;
            line-height: 1.5;
            color: grey;
        } **/

        /* Remove default UL indentation/bullets and control spacing ourselves */
        .assistant-source-list {
            margin: 0;
            padding: 0;
            list-style: none;
        }

        /* Optional separator between items */
        .assistant-source-item+.assistant-source-item {
            border-top: 1px solid rgba(148, 163, 184, 0.12);
        }

        /* Each source item */
        .assistant-source-item {
            margin: 0;
            padding: 4px 0;
            font-size: 13px;
            line-height: 1.45;
            color: #334155;
            min-width: 0;
            border: 0;
            background: transparent;
        }

        /* Link styling */
        .assistant-source-item a,
        .assistant-source-link {
            display: block;
            min-width: 0;
            text-decoration: none;
            font-weight: 400;
            color: #2563eb;
            line-height: 1.45;
            overflow-wrap: anywhere;
            word-break: break-word;
            white-space: normal;
        }

        /* Relevance score */
        .assistant-source-score {
            display: inline-block;
            font-size: 12px;
            color: #64748b;
            white-space: nowrap;
            align-self: start;
            margin: 0;
        }

        /* Row layout: link on left, relevance beside it without huge gap */
        .assistant-source-row {
            display: grid;
            grid-template-columns: minmax(0, 1fr) auto;
            align-items: start;
            column-gap: 10px;
            row-gap: 4px;
            width: 100%;
            min-width: 0;
        }


        /* Hover */
        .assistant-source-item a:hover,
        .assistant-source-link:hover {
            text-decoration: underline;
        }

        /* Labels if used elsewhere */
        .assistant-source-label {
            font-weight: 600;
            color: grey;
            margin-right: 6px;
        }

        /* Chips if used elsewhere */
        .assistant-source-chip {
            display: inline-block;
            margin: 3px 6px 0 0;
            padding: 2px 8px;
            border-radius: 999px;
            background: rgba(59, 130, 246, 0.14);
            color: grey;
            font-size: 11px;
            vertical-align: middle;
        }


        /* Assistant answer text */
        .assistant-answer-text {
            font-weight: 400;
            white-space: normal;
            line-height: 1.7;
            background: white;
            color: black;
        }

        /* Paragraph spacing */
        .assistant-answer-text p {
            margin: 0 0 4px 0;
        }

        /* Section headings */
        .assistant-answer-text .section-title {
            display: block;
            margin: 8px 0 2px 0;
            font-weight: 600;
            color: #1f2937;
        }

        /* Bullet lists */
        .assistant-answer-text ul {
            margin: 2px 0 6px 20px;
            padding: 0;
        }

        /* Bullet items */
        .assistant-answer-text li {
            margin: 4px 0;
            line-height: 1.6;
        }



        /* REFERENCES SOURCE LIST DiSPLAY ISSUE FIX: START*/
        .assistant-bubble .assistant-sources {
            margin-top: 10px;
            padding-top: 6px;
            border-top: 1px solid rgba(148, 163, 184, 0.22);
            background: white;
            width: 100%;
            min-width: 0;
            white-space: normal;
        }

        .assistant-bubble .assistant-source-list {
            margin: 0;
            padding: 0;
            list-style: none;
            white-space: normal;
        }

        .assistant-bubble .assistant-source-item {
            margin: 0;
            padding: 4px 0;
            list-style: none;
            line-height: 1.45;
            white-space: normal;
        }

        .assistant-bubble .assistant-source-item::marker {
            content: none;
        }

        .assistant-bubble .assistant-source-item+.assistant-source-item {
            border-top: 1px solid rgba(148, 163, 184, 0.12);
        }

        .assistant-message-bot:has(.assistant-status-inline) .assistant-bubble {
            padding-top: 0;
        }

        .assistant-bubble .assistant-source-row {
            display: inline-flex;
            align-items: center;
            justify-content: flex-start;
            gap: 6px;
            width: auto;
            max-width: 100%;
            min-width: 0;
            white-space: normal;
            flex-wrap: wrap;
        }

        .assistant-bubble .assistant-source-link,
        .assistant-bubble .assistant-source-item a {
            display: inline-block;
            min-width: 0;
            color: #2563eb;
            font-weight: 400;
            text-decoration: none;
            line-height: 1.4;
            white-space: normal;
            overflow-wrap: anywhere;
            word-break: break-word;
            flex: 1 1 auto;
            vertical-align: middle;
        }

        .assistant-bubble .assistant-source-link:hover,
        .assistant-bubble .assistant-source-item a:hover {
            text-decoration: underline;
        }

        .assistant-bubble .assistant-source-score {
            display: inline-block;
            margin: 0;
            margin-top: 1px;
            font-size: 12px;
            line-height: 1.4;
            color: #64748b;
            white-space: nowrap;
            flex: 0 0 auto;
            vertical-align: middle;
            transform: translateY(1px);
        }

        /* REFERENCES SOURCE LIST DiSPLAY ISSUE FIX: END*/

        .flash-highlight {
            animation: flashHighlight 2.5s ease-in-out;
            border-radius: 12px;
        }

        @keyframes flashHighlight {
            0% {
                background-color: rgba(59, 130, 246, 0.35);
                box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.35);
            }

            50% {
                background-color: rgba(59, 130, 246, 0.16);
                box-shadow: 0 0 0 8px rgba(59, 130, 246, 0.08);
            }

            100% {
                background-color: transparent;
                box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
            }
        }

        /**
OVERVIEW HIGHLIGHT STRIP
**/

        .overview-highlight-strip {
            display: grid;
            grid-template-columns: 1fr 1.6fr 1fr;
            gap: 18px;
            margin: 28px auto 34px;
            padding: 18px 22px;
            max-width: 1100px;
            border: 1px solid rgba(148, 163, 184, 0.18);
            border-radius: 22px;
            background:
                linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(241, 245, 249, 0.92));
            box-shadow:
                0 10px 30px rgba(15, 23, 42, 0.06),
                inset 0 1px 0 rgba(255, 255, 255, 0.7);
        }

        .overview-highlight-item {
            display: flex;
            flex-direction: column;
            justify-content: center;
            min-height: 92px;
            padding: 12px 14px;
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.52);
            border: 1px solid rgba(148, 163, 184, 0.12);
        }

        .overview-highlight-value {
            display: block;
            font-size: 1.08rem;
            line-height: 1.45;
            font-weight: 700;
            color: #1e3a8a;
            letter-spacing: 0.01em;
        }

        .overview-highlight-label {
            display: block;
            margin-top: 6px;
            font-size: 0.78rem;
            line-height: 1.35;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            color: #94a3b8;
        }

        .overview-highlight-item {
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .overview-highlight-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
        }

        @media (max-width: 980px) {
            .overview-highlight-strip {
                grid-template-columns: 1fr;
            }

            .overview-highlight-item {
                min-height: auto;
            }
        }

        /** WORK CONTENT STRIP **/

        .work-context-strip {
            display: grid;
            grid-template-columns: 0.95fr 1.55fr;
            gap: 22px;
            margin: 1px auto 36px;
            padding: 1px 22px;
            max-width: 1100px;
            border-radius: 22px;
            border: 1px solid rgba(148, 163, 184, 0.18);
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(241, 245, 249, 0.92));
            box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.7);
        }

        .work-context-item {
            display: flex;
            flex-direction: column;
            padding: 16px 18px;
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.55);
            border: 1px solid rgba(148, 163, 184, 0.12);
            transition: transform 0.22s ease,
                box-shadow 0.22s ease,
                border-color 0.22s ease,
                background 0.22s ease;
        }

        .work-context-item:hover {
            transform: translateY(-4px);
            box-shadow:
                0 14px 28px rgba(15, 23, 42, 0.10),
                0 0 0 1px rgba(99, 102, 241, 0.12);
            border-color: rgba(99, 102, 241, 0.25);
            background: rgba(255, 255, 255, 0.75);
        }

        .work-context-title {
            font-size: 0.9rem;
            font-weight: 700;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            color: #64748b;
            margin-bottom: 10px;
        }

        .work-context-list {
            margin: 0;
            padding-left: 18px;
        }

        .work-context-list li {
            margin: 6px 0;
            line-height: 1.5;
            font-size: 0.92rem;
            transition: color 0.18s ease, transform 0.18s ease;
        }

        .work-context-list li:hover {
            color: #1e3a8a;
            transform: translateX(3px);
        }

        .work-context-list-two-column {
            columns: 2;
            column-gap: 28px;
            padding-left: 18px;
        }

        .work-context-list-two-column li {
            break-inside: avoid;
            -webkit-column-break-inside: avoid;
            page-break-inside: avoid;
        }

        @media (max-width: 1000px) {
            .work-context-strip {
                grid-template-columns: 1fr;
            }

            .work-context-list-two-column {
                columns: 1;
            }
        }

        /** CREDENTIALS HIGHLIGHT STRIP **/
        .credentials-highlight-strip {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 20px;
            margin: 1px auto 34px;
            padding: 1px 22px;
            max-width: 900px;
            border: 1px solid rgba(148, 163, 184, 0.18);
            border-radius: 22px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(241, 245, 249, 0.92));
            box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.7);
            justify-content: center;
        }

        .credentials-intro-text {
            margin-bottom: 10px;
            /* reduce from default ~20–24px */
        }

        .credentials-highlight-item {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            min-height: 92px;
            padding: 16px 18px;
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.55);
            border: 1px solid rgba(148, 163, 184, 0.12);
            transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
            text-align: center;
        }

        .credentials-highlight-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
            border-color: rgba(99, 102, 241, 0.22);
            background: rgba(255, 255, 255, 0.78);
        }

        .credentials-highlight-value {
            display: block;
            font-size: 1.02rem;
            line-height: 1.4;
            font-weight: 700;
            color: #1e3a8a;
            letter-spacing: 0.01em;
            text-align: center;
        }

        .credentials-highlight-label {
            display: block;
            margin-top: 6px;
            font-size: 0.82rem;
            line-height: 1.35;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.07em;
            color: #94a3b8;
            text-align: center;
        }

        @media (max-width: 900px) {
            .credentials-highlight-strip {
                grid-template-columns: 1fr;
            }
        }
