/* RR Global GSA - Custom Styles for Government Sourcing Catalog Loading Page */

:root {
    --gsa-emerald: hsl(150, 85%, 42%); /* Crisp Emerald Green for Card & Icon Hovers */
    --gsa-emerald-glow: hsla(150, 85%, 42%, 0.35);
    --gsa-orange: #e86023; /* Official RR Global GSA Logo Orange */
    --gsa-orange-glow: rgba(232, 96, 35, 0.35);
    --gsa-dark-card: hsla(222, 45%, 11%, 0.88);
    --gsa-border: hsla(220, 30%, 35%, 0.35);
    --gsa-border-active: hsl(150, 85%, 45%);
}

.gradient-text-emerald,
.gradient-text-orange {
    background: linear-gradient(135deg, #f5844c 0%, #e86023 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Global Button Override for Official GSA Logo Orange (#e86023) */
.btn-primary {
    background: linear-gradient(135deg, #cc4e17 0%, #e86023 100%) !important;
    box-shadow: 0 4px 15px rgba(232, 96, 35, 0.35) !important;
    border: 1px solid rgba(232, 96, 35, 0.5) !important;
    color: #ffffff !important;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #e86023 0%, #f37840 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232, 96, 35, 0.55) !important;
}

/* Neon Orange Outline Pill Badges ("Official GSA Taxonomy", etc.) - No background color, glowing outline & text */
span.badge-secondary,
.gsa-section .badge-secondary,
.section-header .badge-secondary,
.badge-secondary {
    background: transparent !important;
    border: 1.5px solid #ff6a1a !important;
    color: #ff6a1a !important;
    box-shadow: 0 0 12px rgba(255, 106, 26, 0.55) !important;
    font-weight: 600 !important;
    letter-spacing: 0.06em !important;
    text-shadow: 0 0 8px rgba(255, 106, 26, 0.35) !important;
}

/* Terminal Loading Module */
.catalog-loader-container {
    margin: 2.5rem 0;
    background: var(--gsa-dark-card);
    border: 1px solid var(--gsa-border);
    border-radius: 16px;
    padding: 1.8rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 30px hsla(28, 95%, 53%, 0.15);
    backdrop-filter: blur(12px);
}

.loader-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid hsla(220, 20%, 30%, 0.3);
}

.loader-title-group {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.loader-pulse-dot {
    width: 12px;
    height: 12px;
    background-color: var(--gsa-emerald);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--gsa-emerald);
    animation: loaderPulse 1.5s infinite;
}

@keyframes loaderPulse {
    0% { transform: scale(0.95); opacity: 0.7; }
    50% { transform: scale(1.2); opacity: 1; box-shadow: 0 0 18px var(--gsa-emerald); }
    100% { transform: scale(0.95); opacity: 0.7; }
}

.loader-status-text {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: hsl(210, 40%, 98%);
}

.loader-percentage {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--gsa-emerald);
    background: hsla(150, 85%, 42%, 0.12);
    padding: 0.3rem 0.8rem;
    border-radius: 30px;
    border: 1px solid hsla(150, 85%, 42%, 0.3);
}

/* Progress Bar */
.loader-progress-track {
    width: 100%;
    height: 10px;
    background: hsla(220, 30%, 18%, 0.8);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    position: relative;
}

.loader-progress-fill {
    height: 100%;
    width: 86.4%;
    background: linear-gradient(90deg, hsl(220, 95%, 56%) 0%, var(--gsa-emerald) 100%);
    border-radius: 10px;
    position: relative;
    box-shadow: 0 0 15px var(--gsa-emerald-glow);
    transition: width 0.8s ease;
}

.loader-progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shimmerBar 2.5s infinite;
}

@keyframes shimmerBar {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Terminal Feed Box */
.terminal-feed {
    background: hsl(222, 55%, 6%);
    border: 1px solid hsla(150, 80%, 46%, 0.15);
    border-radius: 10px;
    padding: 1rem 1.2rem;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.88rem;
    color: hsl(150, 75%, 70%);
    max-height: 160px;
    overflow-y: auto;
    line-height: 1.7;
}

.terminal-line {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 0.3rem;
}

.terminal-prefix {
    color: hsl(210, 100%, 75%);
    font-weight: bold;
    flex-shrink: 0;
}

.terminal-status-ok {
    color: var(--gsa-emerald);
    font-weight: bold;
}

.terminal-cursor {
    display: inline-block;
    width: 8px;
    height: 15px;
    background-color: var(--gsa-emerald);
    vertical-align: middle;
    animation: blinkCursor 1s infinite;
}

@keyframes blinkCursor {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

/* Division Tabs System */
.tabs-container {
    margin-top: 3rem;
}

.tabs-nav {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.tab-btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    background: hsla(222, 47%, 16%, 0.6);
    border: 1px solid var(--color-border);
    color: var(--color-text-muted);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.tab-btn:hover {
    background: hsla(222, 47%, 22%, 0.8);
    color: var(--color-text-main);
    border-color: hsla(28, 95%, 53%, 0.35);
}

.tab-btn.active {
    background: linear-gradient(135deg, hsla(28, 95%, 53%, 0.25) 0%, hsla(38, 95%, 60%, 0.15) 100%);
    border-color: var(--gsa-emerald);
    color: hsl(34, 100%, 82%);
    box-shadow: 0 8px 25px hsla(28, 95%, 53%, 0.2);
}

.tab-content {
    display: none;
    animation: fadeInTab 0.4s ease forwards;
}

.tab-content.active {
    display: block;
}

@keyframes fadeInTab {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.tab-pane-card {
    background: var(--gsa-dark-card);
    border: 1px solid var(--gsa-border);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}

.tab-grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 992px) {
    .tab-grid-2 {
        grid-template-columns: 1.1fr 0.9fr;
    }
}

.feature-box-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 1.8rem 0;
}

@media (min-width: 640px) {
    .feature-box-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

.feature-box {
    background: hsla(222, 50%, 15%, 0.6);
    border: 1px solid hsla(220, 95%, 56%, 0.15);
    border-radius: 12px;
    padding: 1.2rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.feature-box i {
    color: var(--gsa-emerald);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.feature-box h5 {
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.feature-box p {
    font-size: 0.82rem;
    color: var(--color-text-muted);
}

.badge-gsa {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1.2rem;
    background: hsla(150, 85%, 42%, 0.15);
    border: 1px solid hsla(150, 85%, 42%, 0.3);
    border-radius: 50px;
    color: hsl(150, 90%, 75%);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 1.2rem;
}

.gsa-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 1.8rem;
    border-top: 1px solid hsla(220, 20%, 30%, 0.4);
}

/* ==========================================================================
   Antigravity Reusable Template Components & Layouts
   ========================================================================== */

/* Breadcrumb Navigation */
.breadcrumb-container {
    background: hsla(222, 55%, 6%, 0.95);
    border-bottom: 1px solid var(--gsa-border);
    padding: 96px 0 1rem 0;
    position: relative;
    z-index: 10;
}

.breadcrumb-container + .hero-section {
    padding-top: 2.5rem !important;
}

.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.88rem;
    color: var(--color-text-muted);
}

.breadcrumb a {
    color: hsl(210, 80%, 75%);
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb a:hover {
    color: var(--gsa-emerald);
}

.breadcrumb .separator {
    color: hsla(210, 40%, 60%, 0.4);
}

.breadcrumb .current {
    color: hsl(210, 30%, 90%);
    font-weight: 500;
}

/* Scope Exclusion Banner (e.g. Toner / Ink routing to RR Global Services) */
.scope-notice-banner {
    background: linear-gradient(135deg, hsla(35, 95%, 50%, 0.12) 0%, hsla(20, 90%, 45%, 0.12) 100%);
    border: 1px solid hsla(35, 95%, 55%, 0.4);
    border-radius: 14px;
    padding: 1.4rem 1.8rem;
    margin: 2rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: hsl(35, 95%, 85%);
}

.scope-notice-banner i {
    color: hsl(35, 95%, 60%);
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.scope-notice-banner p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.scope-notice-banner a {
    color: hsl(35, 95%, 70%);
    font-weight: 600;
    text-decoration: underline;
}

.scope-notice-banner a:hover {
    color: hsl(35, 95%, 85%);
}

/* Category Pillar Cards Grid */
.category-pillar-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.8rem;
    margin-top: 2rem;
}

@media (min-width: 640px) {
    .category-pillar-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .category-pillar-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.category-card {
    background: rgba(18, 24, 36, 0.75);
    border: 1px solid rgba(255, 106, 26, 0.45);
    border-radius: 20px;
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5), 0 0 22px rgba(255, 106, 26, 0.22);
    backdrop-filter: blur(14px);
}

.category-card:hover {
    transform: translateY(-6px);
    border-color: #00df89;
    box-shadow: 0 15px 40px rgba(0,0,0,0.65), 0 0 32px rgba(0, 223, 137, 0.38);
}

.category-card-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: rgba(255, 106, 26, 0.12);
    color: #ff6a1a;
    border: 1.5px solid #ff6a1a;
    box-shadow: 0 0 14px rgba(255, 106, 26, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.4rem;
    transition: all 0.3s ease;
}

.category-card:hover .category-card-icon {
    background: hsla(150, 85%, 42%, 0.2);
    color: var(--gsa-emerald);
    border-color: hsla(150, 85%, 42%, 0.5);
    box-shadow: 0 0 18px var(--gsa-emerald);
    transform: scale(1.1) rotate(5deg);
}

.category-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.6rem;
    color: #fff;
}

.category-card p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.category-card-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.75rem 1.4rem;
    border-radius: 50px;
    background: transparent !important;
    border: 1.5px solid #ff6a1a !important;
    color: #ff6a1a !important;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    margin-top: auto;
    box-shadow: 0 0 14px rgba(255, 106, 26, 0.4) !important;
}

.category-card:hover .category-card-link {
    background: transparent !important;
    border-color: #00df89 !important;
    color: #00df89 !important;
    box-shadow: 0 0 18px rgba(0, 223, 137, 0.5) !important;
    transform: translateY(-2px);
    gap: 0.8rem;
}

/* Buyer Vertical Grid */
.vertical-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 640px) {
    .vertical-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .vertical-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.vertical-card {
    background: rgba(18, 24, 36, 0.75);
    border: 1px solid rgba(255, 106, 26, 0.45);
    border-radius: 20px;
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5), 0 0 22px rgba(255, 106, 26, 0.22);
    backdrop-filter: blur(14px);
}

.vertical-card:hover {
    border-color: #00df89;
    box-shadow: 0 15px 40px rgba(0,0,0,0.65), 0 0 32px rgba(0, 223, 137, 0.38);
    transform: translateY(-6px);
}

.vertical-card-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.vertical-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(255, 106, 26, 0.12);
    color: #ff6a1a;
    border: 1.5px solid #ff6a1a;
    box-shadow: 0 0 14px rgba(255, 106, 26, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.vertical-card:hover .vertical-card-icon {
    background: hsla(150, 85%, 42%, 0.2);
    color: var(--gsa-emerald);
    border-color: hsla(150, 85%, 42%, 0.5);
    box-shadow: 0 0 18px var(--gsa-emerald);
}

.vertical-card h4 {
    font-size: 1.15rem;
    color: #fff;
    margin: 0;
}

.vertical-card p {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 1.4rem;
}

.vertical-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.75rem 1.4rem;
    border-radius: 50px;
    background: transparent !important;
    border: 1.5px solid #ff6a1a !important;
    color: #ff6a1a !important;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    margin-top: auto;
    box-shadow: 0 0 14px rgba(255, 106, 26, 0.4) !important;
}

.vertical-card:hover .vertical-link {
    background: transparent !important;
    border-color: #00df89 !important;
    color: #00df89 !important;
    box-shadow: 0 0 18px rgba(0, 223, 137, 0.5) !important;
    transform: translateY(-2px);
    gap: 0.8rem;
}

/* Inner Page Buyer/Category Grid and Card Buttons */
.buyer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.8rem;
    margin-top: 2rem;
}

.buyer-card {
    background: rgba(18, 24, 36, 0.75);
    border: 1px solid rgba(255, 106, 26, 0.45);
    border-radius: 20px;
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5), 0 0 22px rgba(255, 106, 26, 0.22);
    backdrop-filter: blur(14px);
}

.buyer-card:hover {
    transform: translateY(-6px);
    border-color: #00df89;
    box-shadow: 0 15px 40px rgba(0,0,0,0.65), 0 0 32px rgba(0, 223, 137, 0.38);
}

.buyer-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(255, 106, 26, 0.12);
    color: #ff6a1a;
    border: 1.5px solid #ff6a1a;
    box-shadow: 0 0 14px rgba(255, 106, 26, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    transition: all 0.3s ease;
}

.buyer-card:hover .buyer-card-icon {
    background: hsla(150, 85%, 42%, 0.2);
    color: var(--gsa-emerald);
    border-color: hsla(150, 85%, 42%, 0.5);
    box-shadow: 0 0 18px var(--gsa-emerald);
    transform: scale(1.1) rotate(5deg);
}

.buyer-card h3 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 0.6rem;
}

.buyer-card p {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 1.6rem;
}

.buyer-card .card-link-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.75rem 1.4rem;
    border-radius: 50px;
    background: transparent !important;
    border: 1.5px solid #ff6a1a !important;
    color: #ff6a1a !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    margin-top: auto;
    box-shadow: 0 0 14px rgba(255, 106, 26, 0.4) !important;
}

.buyer-card:hover .card-link-text {
    background: transparent !important;
    border-color: #00df89 !important;
    color: #00df89 !important;
    box-shadow: 0 0 18px rgba(0, 223, 137, 0.5) !important;
    transform: translateY(-2px);
    gap: 0.8rem;
}

/* Educational Guide Layout with Sidebar TOC */
.guide-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.5rem;
    margin: 3rem 0;
}

@media (min-width: 992px) {
    .guide-layout {
        grid-template-columns: 280px 1fr;
        align-items: start;
    }
}

.toc-sidebar {
    background: var(--gsa-dark-card);
    border: 1px solid var(--gsa-border);
    border-radius: 16px;
    padding: 1.6rem;
    position: sticky;
    top: 100px;
}

.toc-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.toc-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.toc-nav a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    display: block;
    padding: 0.4rem 0.6rem;
    border-left: 2px solid transparent;
    transition: all 0.2s ease;
}

.toc-nav a:hover,
.toc-nav a.active {
    color: var(--gsa-emerald);
    border-left-color: var(--gsa-emerald);
    background: hsla(150, 85%, 42%, 0.08);
}

.guide-content {
    background: var(--gsa-dark-card);
    border: 1px solid var(--gsa-border);
    border-radius: 20px;
    padding: 2.5rem 3rem;
    line-height: 1.8;
    color: hsl(210, 20%, 85%);
}

@media (max-width: 768px) {
    .guide-content {
        padding: 1.8rem;
    }
}

.guide-section {
    margin-bottom: 3.5rem;
    scroll-margin-top: 120px;
}

.guide-section:last-child {
    margin-bottom: 0;
}

.guide-section h2 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 1.2rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid hsla(220, 20%, 30%, 0.4);
}

.guide-section h3 {
    font-size: 1.35rem;
    color: hsl(150, 90%, 75%);
    margin: 1.8rem 0 0.8rem 0;
}

.guide-section p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.guide-checklist {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.guide-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    background: hsla(222, 50%, 15%, 0.5);
    padding: 1rem 1.2rem;
    border-radius: 10px;
    border-left: 3px solid var(--gsa-emerald);
}

.guide-checklist li i {
    color: var(--gsa-emerald);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

/* What's In Scope Matrix Box */
.scope-matrix {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .scope-matrix {
        grid-template-columns: repeat(2, 1fr);
    }
}

.scope-item {
    background: hsla(222, 50%, 15%, 0.6);
    border: 1px solid hsla(150, 80%, 46%, 0.2);
    border-radius: 14px;
    padding: 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.scope-item h4 {
    color: hsl(150, 90%, 75%);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin: 0;
}

.scope-item p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* Cross-Links Box */
.cross-links-box {
    background: hsla(220, 45%, 12%, 0.9);
    border: 1px solid hsla(220, 95%, 56%, 0.3);
    border-radius: 16px;
    padding: 2rem;
    margin-top: 3rem;
}

.cross-links-box h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #fff;
}

.cross-links-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.cross-link-pill {
    padding: 0.6rem 1.2rem;
    background: hsla(220, 95%, 56%, 0.15);
    border: 1px solid hsla(220, 95%, 56%, 0.35);
    border-radius: 30px;
    color: hsl(220, 100%, 85%);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.cross-link-pill:hover {
    background: hsla(220, 95%, 56%, 0.3);
    border-color: hsl(220, 95%, 75%);
    color: #fff;
    transform: translateY(-2px);
}

/* Hero Visual Showcase Split & Floating Badges */
.grid-2-hero {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
    align-items: center;
}

@media (max-width: 992px) {
    .grid-2-hero {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
}

.hero-visual-showcase {
    position: relative;
    padding: 1.5rem;
    border-radius: 24px;
    background: linear-gradient(135deg, hsla(150, 85%, 42%, 0.12) 0%, hsla(220, 95%, 56%, 0.08) 100%);
    border: 1px solid hsla(150, 85%, 42%, 0.28);
    box-shadow: 0 25px 60px rgba(0,0,0,0.65), 0 0 40px hsla(150, 85%, 42%, 0.12);
    backdrop-filter: blur(15px);
}

.hero-visual-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    border: 1px solid hsla(210, 40%, 98%, 0.1);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hero-visual-showcase:hover .hero-visual-img {
    transform: scale(1.018);
}

.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.1rem;
    background: hsla(222, 55%, 8%, 0.92);
    border: 1px solid hsla(150, 85%, 42%, 0.4);
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.6);
    backdrop-filter: blur(12px);
    z-index: 5;
    animation: floatBadge 4s ease-in-out infinite alternate;
}

.floating-badge.badge-top-left {
    top: -15px;
    left: -20px;
    animation-delay: 0s;
}

.floating-badge.badge-bottom-right {
    bottom: -15px;
    right: -20px;
    border-color: hsla(200, 90%, 55%, 0.4);
    animation-delay: 2s;
}

@media (max-width: 768px) {
    .floating-badge.badge-top-left { left: 5px; top: -10px; }
    .floating-badge.badge-bottom-right { right: 5px; bottom: -10px; }
}

@keyframes floatBadge {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-7px); }
}

.floating-badge i {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.floating-badge.badge-top-left i { color: var(--gsa-emerald); }
.floating-badge.badge-bottom-right i { color: hsl(200, 90%, 65%); }

.floating-badge-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.floating-badge-text strong {
    font-size: 0.88rem;
    color: #fff;
    line-height: 1.2;
}

.floating-badge-text span {
    font-size: 0.74rem;
    color: var(--color-text-muted);
}


