/* ================================================
   TRIDENT NORTHSTAR — Company Business Profile
   Layered on top of cards.css + profiles.css.
   Reuses the profile-section framework for section
   scaffolding and adds company-specific components
   (leader cards, fleet cards, office cards, etc).
   ================================================ */

/* --- Book-style side navigation (TOC) --- */
.biz-layout {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: var(--space-6);
    padding: 0 var(--space-4);
    position: relative;
    z-index: 3;
}

.biz-main { min-width: 0; }

.biz-toc {
    position: sticky;
    top: 80px;
    align-self: start;
    padding: var(--space-4);
    background: rgba(10, 5, 5, 0.9);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: var(--radius-lg);
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
    scrollbar-width: thin;
    scrollbar-color: rgba(220, 38, 38, 0.5) transparent;
}

.biz-toc::-webkit-scrollbar { width: 6px; }
.biz-toc::-webkit-scrollbar-thumb {
    background: rgba(220, 38, 38, 0.5);
    border-radius: 3px;
}

.biz-toc-header {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.6rem;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.28em;
    font-weight: 700;
    padding-bottom: var(--space-3);
    border-bottom: 1px solid rgba(220, 38, 38, 0.25);
    margin-bottom: var(--space-3);
}

.biz-toc-header i { color: var(--color-accent); }

.biz-toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: toc-counter;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.biz-toc-list li { counter-increment: toc-counter; }

.biz-toc-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    color: var(--color-medium-gray);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    border-left: 2px solid transparent;
    border-radius: 4px;
    transition: all var(--transition-base);
    line-height: 1.3;
}

.biz-toc-link::before {
    content: counter(toc-counter, decimal-leading-zero);
    font-family: 'Inter', monospace;
    color: var(--color-dark-gray);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    flex-shrink: 0;
    transition: color var(--transition-base);
}

.biz-toc-link:hover {
    color: var(--color-white);
    background: rgba(220, 38, 38, 0.1);
    border-left-color: rgba(220, 38, 38, 0.5);
}

.biz-toc-link.is-active {
    color: var(--color-accent);
    background: rgba(220, 38, 38, 0.16);
    border-left-color: var(--color-accent);
    font-weight: 700;
    text-shadow: 0 0 12px rgba(220, 38, 38, 0.4);
}

.biz-toc-link.is-active::before { color: var(--color-gold); }

/* Ensure scrolled-to sections aren't hidden under the sticky top nav */
.profile-section { scroll-margin-top: 80px; }
.profile-cta      { scroll-margin-top: 80px; }

/* Mobile: collapse layout to single column; hide the TOC (top nav still available) */
@media (max-width: 900px) {
    .biz-layout {
        grid-template-columns: 1fr;
        padding: 0;
    }
    .biz-toc { display: none; }
}

/* ============================================================
   CINEMATIC TACTICAL HUD OVERLAY (Option A + C)
   ============================================================ */

/* Corner viewfinder brackets on hero.
   Extra bottom padding gives the "Scroll to Explore" indicator room to
   sit below the CTA button row instead of overlapping it. */
.profile-hero {
    position: relative;
    overflow: hidden;
    padding-bottom: calc(var(--space-16) + var(--space-4));
}

/* Nudge the scroll indicator up slightly so it sits cleanly in its own zone */
.profile-hero-scroll {
    bottom: var(--space-4);
}

.hud-bracket {
    position: absolute;
    width: 44px;
    height: 44px;
    border: 2px solid var(--color-accent);
    opacity: 0.7;
    z-index: 4;
    box-shadow: 0 0 12px rgba(220, 38, 38, 0.5);
    pointer-events: none;
}

.hud-bracket.tl { top: 24px; left: 24px; border-right: none; border-bottom: none; }
.hud-bracket.tr { top: 24px; right: 24px; border-left: none; border-bottom: none; }
.hud-bracket.bl { bottom: 24px; left: 24px; border-right: none; border-top: none; }
.hud-bracket.br { bottom: 24px; right: 24px; border-left: none; border-top: none; }

/* Horizontal scan line sweeping down the hero */
.hud-scanline {
    position: absolute;
    left: 0; right: 0; top: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.9), transparent);
    box-shadow: 0 0 18px rgba(220, 38, 38, 0.7);
    pointer-events: none;
    z-index: 3;
    animation: hud-scan 7s linear infinite;
}

@keyframes hud-scan {
    0%   { top: -5%; opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 1; }
    100% { top: 105%; opacity: 0; }
}

/* Small tactical readouts in hero corners */
.hud-readout {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 8px 12px;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(220, 38, 38, 0.5);
    border-radius: 4px;
    font-family: 'Inter', ui-monospace, monospace;
    z-index: 4;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}

.hud-readout.tl { top: 34px; left: 86px; }
.hud-readout.tr { top: 34px; right: 86px; align-items: flex-end; }
.hud-readout.bl { bottom: 34px; left: 86px; }

.hud-readout-label {
    color: var(--color-gold);
    letter-spacing: 0.2em;
    font-size: 0.55rem;
    text-transform: uppercase;
    font-weight: 700;
}

.hud-readout-value {
    color: var(--color-accent);
    font-weight: 700;
    letter-spacing: 0.1em;
    font-size: 0.75rem;
}

/* Live ops status chip (in the hero) */
.hud-live-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(220, 38, 38, 0.15);
    border: 1px solid rgba(220, 38, 38, 0.6);
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 700;
    color: #ffe1e1;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    margin-bottom: var(--space-4);
    box-shadow: 0 0 24px rgba(220, 38, 38, 0.35);
    animation: chip-glow 3s ease-in-out infinite;
    position: relative;
    z-index: 3;
}

.hud-live-chip .rotating {
    color: var(--color-gold);
    font-weight: 800;
    display: inline-block;
    min-width: 140px;
    text-align: left;
}

.hud-pulse-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #ff4444;
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(255, 68, 68, 1);
    animation: pulse-dot 1.5s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 10px rgba(255, 68, 68, 1); }
    50%      { opacity: 0.65; transform: scale(1.35); box-shadow: 0 0 22px rgba(255, 68, 68, 1); }
}

@keyframes chip-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(220, 38, 38, 0.35); }
    50%      { box-shadow: 0 0 34px rgba(220, 38, 38, 0.6); }
}

/* Radar sweep behind the crest */
.hud-radar-wrap {
    position: relative;
    display: inline-block;
}

.hud-radar {
    position: absolute;
    inset: -22px;
    border-radius: 50%;
    border: 1px dashed rgba(220, 38, 38, 0.3);
    pointer-events: none;
    animation: radar-orbit 24s linear infinite;
}

.hud-radar::before,
.hud-radar::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent 300deg, rgba(220, 38, 38, 0.5) 355deg, transparent 360deg);
    animation: radar-sweep 3.5s linear infinite;
    pointer-events: none;
}

.hud-radar::after {
    inset: 16px;
    border: 1px dotted rgba(220, 38, 38, 0.2);
    background: none;
    animation: radar-orbit 30s linear infinite reverse;
}

@keyframes radar-orbit { to { transform: rotate(360deg); } }
@keyframes radar-sweep { to { transform: rotate(360deg); } }

/* ============================================================
   FLOATING MISSION-STATUS HUD (top-right, fixed)
   ============================================================ */

.mission-hud {
    position: fixed;
    /* Sit well below the hero clock/date readout in the top-right corner
       so both are visible when scrolled to top of the page. */
    top: 200px;
    right: 20px;
    z-index: 25;
    padding: 12px 14px;
    background: rgba(0, 0, 0, 0.85);
    border: 1px solid rgba(220, 38, 38, 0.5);
    border-radius: var(--radius-md);
    font-family: 'Inter', ui-monospace, monospace;
    min-width: 240px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.6),
        0 0 24px rgba(220, 38, 38, 0.2);
    animation: mission-hud-glow 3.5s ease-in-out infinite;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Fades out when scroll reaches the About section (JS toggles .is-hidden) */
.mission-hud.is-hidden {
    opacity: 0;
    transform: translateX(30px);
    pointer-events: none;
}

@keyframes mission-hud-glow {
    0%, 100% { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 22px rgba(220, 38, 38, 0.18); }
    50%      { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 40px rgba(220, 38, 38, 0.4); }
}

.mission-hud-title {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    padding-bottom: 8px;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(220, 38, 38, 0.3);
    font-size: 0.6rem;
}

.mission-hud-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
    font-size: 0.65rem;
    gap: var(--space-3);
}

.mission-hud-label {
    color: var(--color-medium-gray);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.55rem;
}

.mission-hud-value {
    color: var(--color-white);
    font-weight: 700;
    letter-spacing: 0.05em;
    font-family: 'Inter', ui-monospace, monospace;
}

.mission-hud-value.accent { color: var(--color-accent); }
.mission-hud-value.gold   { color: var(--color-gold); }
.mission-hud-value.live   { color: #6ee7b7; }

/* ============================================================
   ANIMATED STAT COUNTERS
   ============================================================ */

.biz-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--space-4);
    margin-top: var(--space-6);
}

.biz-stat {
    padding: var(--space-6) var(--space-4);
    background: linear-gradient(180deg, rgba(30, 12, 12, 0.5) 0%, rgba(10, 3, 3, 0.85) 100%);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-base);
}

.biz-stat::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    opacity: 0.75;
}

.biz-stat:hover {
    border-color: var(--color-accent);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.25);
}

.biz-stat-number {
    display: inline-block;
    font-size: clamp(2.5rem, 5.5vw, 3.6rem);
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
    letter-spacing: -0.02em;
    text-shadow: 0 0 30px rgba(220, 38, 38, 0.6);
    font-family: 'Inter', ui-monospace, monospace;
}

.biz-stat-suffix {
    font-size: 0.55em;
    color: var(--color-gold);
    margin-left: 4px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.biz-stat-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-top: var(--space-3);
}

.biz-stat-hint {
    display: block;
    font-size: 0.62rem;
    color: var(--color-medium-gray);
    margin-top: 6px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ============================================================
   INTERACTIVE 3D GLOBE (Globe.gl)
   ============================================================ */

.biz-globe-wrap {
    position: relative;
    width: 100%;
    height: 540px;
    background:
        radial-gradient(circle at center, rgba(15, 5, 5, 0.4) 0%, transparent 70%),
        rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin: var(--space-6) 0;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(220, 38, 38, 0.15);
}

#biz-globe {
    width: 100%;
    height: 100%;
}

#biz-globe canvas { display: block; }

.biz-globe-legend {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 14px 16px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(220, 38, 38, 0.45);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    font-size: 0.68rem;
    color: var(--color-white);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
    pointer-events: none;
}

.biz-globe-legend-title {
    font-size: 0.55rem;
    color: var(--color-gold);
    letter-spacing: 0.24em;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(220, 38, 38, 0.3);
    margin-bottom: 4px;
}

.biz-globe-legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.6rem;
}

.biz-globe-legend-item .dot {
    width: 8px; height: 8px;
    background: #ff4444;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 68, 68, 1);
    animation: pulse-dot 1.5s ease-in-out infinite;
    flex-shrink: 0;
}

.biz-globe-legend-item .arc-line {
    width: 22px; height: 2px;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.9), transparent);
    box-shadow: 0 0 8px rgba(220, 38, 38, 0.7);
    flex-shrink: 0;
}

.biz-globe-hint {
    position: absolute;
    bottom: 18px;
    right: 18px;
    z-index: 5;
    padding: 6px 10px;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(220, 38, 38, 0.35);
    border-radius: 4px;
    color: var(--color-medium-gray);
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 600;
    backdrop-filter: blur(6px);
    pointer-events: none;
}

/* Zoom +/- buttons overlaid at the bottom-left of the globe */
.biz-globe-zoom {
    position: absolute;
    bottom: 18px;
    left: 18px;
    z-index: 6;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.biz-globe-btn {
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(220, 38, 38, 0.5);
    border-radius: 6px;
    color: var(--color-accent);
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
    font-family: var(--font-primary);
    padding: 0;
}

.biz-globe-btn:hover {
    background: rgba(220, 38, 38, 0.3);
    border-color: var(--color-accent);
    color: var(--color-white);
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(220, 38, 38, 0.4);
}

.biz-globe-btn:active {
    transform: translateY(0);
    background: rgba(220, 38, 38, 0.5);
}

.biz-globe-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
}

/* ============================================================
   SECTION TITLE LETTER CASCADE
   ============================================================ */

.title-word {
    display: inline-block;
    white-space: nowrap;
}

.title-letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.title-letter.is-in {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   REDUCED MOTION ESCAPE HATCH
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
    .hud-scanline,
    .hud-radar,
    .hud-radar::before,
    .hud-radar::after,
    .hud-live-chip,
    .hud-pulse-dot,
    .mission-hud {
        animation: none !important;
    }
    .title-letter {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* ============================================================
   MOBILE ADJUSTMENTS FOR NEW HUD ELEMENTS
   ============================================================ */

@media (max-width: 900px) {
    .mission-hud { display: none; }
    .hud-readout { display: none; }
    .hud-bracket { width: 28px; height: 28px; }
    .biz-globe-wrap { height: 380px; }
}

@media (max-width: 600px) {
    .hud-bracket { width: 20px; height: 20px; }
    .biz-globe-wrap { height: 320px; }
    .biz-globe-legend { padding: 10px 12px; font-size: 0.6rem; }
}

/* --- Hero: company brand --- */
.biz-hero-crest {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 220px;
    height: 220px;
    padding: 46px;
    margin-bottom: var(--space-4);
    isolation: isolate;
    /* Big soft light halo behind the logo — pale so it stays under the red logo silhouette */
    background: radial-gradient(circle at center,
        rgba(255, 235, 235, 0.55) 0%,
        rgba(255, 200, 200, 0.35) 22%,
        rgba(255, 120, 120, 0.22) 42%,
        rgba(220, 38, 38, 0.12) 60%,
        transparent 78%);
    animation: crest-halo-breathe 4s ease-in-out infinite;
}

@keyframes crest-halo-breathe {
    0%, 100% {
        background: radial-gradient(circle at center,
            rgba(255, 235, 235, 0.5) 0%,
            rgba(255, 200, 200, 0.32) 22%,
            rgba(255, 120, 120, 0.2) 42%,
            rgba(220, 38, 38, 0.1) 60%,
            transparent 78%);
    }
    50% {
        background: radial-gradient(circle at center,
            rgba(255, 245, 245, 0.75) 0%,
            rgba(255, 210, 210, 0.5) 22%,
            rgba(255, 140, 140, 0.32) 42%,
            rgba(220, 38, 38, 0.18) 60%,
            transparent 78%);
    }
}

/* Radar-style pulse ring — expands OUTWARD from the crest (never over the logo) */
.biz-hero-crest::before,
.biz-hero-crest::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(255, 90, 90, 0.7);
    box-shadow: 0 0 20px rgba(255, 60, 60, 0.5);
    animation: crest-ring 3.5s ease-out infinite;
    pointer-events: none;
    z-index: -1;
}

.biz-hero-crest::after {
    animation-delay: 1.75s;
}

@keyframes crest-ring {
    0% {
        opacity: 0.9;
        transform: scale(0.85);
        border-width: 2.5px;
    }
    100% {
        opacity: 0;
        transform: scale(1.9);
        border-width: 0.5px;
    }
}

/* The actual logo: contrast halo (lighter than the red logo so its silhouette pops) */
.biz-hero-crest img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 1;
    animation: crest-breathe 3.5s ease-in-out infinite;
}

@keyframes crest-breathe {
    0%, 100% {
        transform: scale(1);
        filter:
            drop-shadow(0 0 20px rgba(255, 235, 235, 0.8))
            drop-shadow(0 0 45px rgba(255, 130, 130, 0.55))
            drop-shadow(0 6px 18px rgba(0, 0, 0, 0.6));
    }
    50% {
        transform: scale(1.04);
        filter:
            drop-shadow(0 0 32px rgba(255, 245, 245, 1))
            drop-shadow(0 0 65px rgba(255, 160, 160, 0.7))
            drop-shadow(0 6px 18px rgba(0, 0, 0, 0.6));
    }
}

@media (prefers-reduced-motion: reduce) {
    .biz-hero-crest::before,
    .biz-hero-crest::after,
    .biz-hero-crest img {
        animation: none !important;
    }
}

.biz-hero-name {
    font-size: clamp(2.2rem, 6vw, 4rem);
    font-weight: 800;
    /* Semi-grayish off-white — deliberately not pure white so the eye lands on
       the crimson accents and the crest, not on the wordmark shouting for attention. */
    color: #c8ced8;
    letter-spacing: -0.02em;
    line-height: 1;
    margin: 0 0 var(--space-2);
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}

.biz-hero-eyebrow {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.35em;
    margin: 0 0 var(--space-2);
}

.biz-hero-positioning {
    display: block;
    font-size: clamp(0.95rem, 1.6vw, 1.1rem);
    color: var(--color-accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    margin: 0 0 var(--space-4);
}

.biz-hero-tagline {
    font-size: clamp(1.15rem, 2.2vw, 1.5rem);
    color: var(--color-white);
    font-weight: 700;
    margin: var(--space-4) 0 var(--space-2);
    line-height: 1.3;
}

.biz-hero-tagline-sub {
    font-size: clamp(1.15rem, 2.2vw, 1.5rem);
    color: var(--color-accent);
    font-weight: 700;
    margin: 0 0 var(--space-4);
    line-height: 1.3;
    text-shadow: 0 2px 12px rgba(220, 38, 38, 0.35);
}

/* --- At-a-glance data grid --- */
.biz-data-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-3);
    margin-top: var(--space-6);
}

.biz-data-item {
    padding: var(--space-4);
    background: rgba(15, 5, 5, 0.7);
    border: 1px solid rgba(220, 38, 38, 0.25);
    border-radius: var(--radius-md);
    text-align: left;
    transition: all var(--transition-base);
}

.biz-data-item:hover {
    border-color: var(--color-accent);
    transform: translateY(-2px);
}

.biz-data-label {
    display: block;
    font-size: 0.62rem;
    color: var(--color-medium-gray);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
    margin-bottom: 6px;
}

.biz-data-value {
    display: block;
    font-size: 1rem;
    color: var(--color-white);
    font-weight: 700;
    letter-spacing: 0.01em;
    word-break: break-word;
}

.biz-data-value.mono {
    font-family: 'Inter', monospace;
    letter-spacing: 0.05em;
    color: var(--color-gold);
}

/* --- Values grid (Integrity / Excellence / Reliability etc) --- */
.biz-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--space-3);
    margin-top: var(--space-6);
}

.biz-value {
    text-align: center;
    padding: var(--space-4);
    background: rgba(15, 5, 5, 0.6);
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: var(--radius-md);
}

.biz-value i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.2) 0%, rgba(139, 27, 27, 0.15) 100%);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: var(--color-gold);
    font-size: 1.1rem;
    margin-bottom: var(--space-2);
}

.biz-value h3 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin: 0;
}

/* --- Fleet vessel cards --- */
.biz-fleet {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: var(--space-5);
}

.biz-ship {
    background: rgba(10, 5, 5, 0.8);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-base);
}

.biz-ship:hover {
    border-color: var(--color-accent);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.25);
}

.biz-ship-image {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #000;
    position: relative;
}

.biz-ship-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.65) 100%);
    pointer-events: none;
}

.biz-ship-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.biz-ship:hover .biz-ship-image img {
    transform: scale(1.06);
}

.biz-ship-body {
    padding: var(--space-5);
}

.biz-ship-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-white);
    margin: 0 0 4px;
    letter-spacing: 0.02em;
}

.biz-ship-type {
    display: block;
    font-size: 0.68rem;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 700;
    margin: 0 0 var(--space-4);
}

.biz-ship-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2);
    padding-top: var(--space-3);
    border-top: 1px solid rgba(220, 38, 38, 0.15);
}

.biz-ship-spec {
    text-align: center;
}

.biz-ship-spec-label {
    display: block;
    font-size: 0.58rem;
    color: var(--color-medium-gray);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 3px;
    font-weight: 600;
}

.biz-ship-spec-value {
    display: block;
    font-size: 0.85rem;
    color: var(--color-white);
    font-weight: 700;
}

/* ==========================================================
   FLEET & EQUIPMENT — Expandable Category Cards
   ========================================================== */

/* Divider label separating Featured Flagships / Full Manifest */
.biz-inv-featured-label {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin: var(--space-8) 0 var(--space-4);
}

.biz-inv-featured-line {
    flex: 1 1 auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.5), transparent);
}

.biz-inv-featured-text {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(30, 12, 12, 0.85);
    border: 1px solid rgba(220, 38, 38, 0.5);
    border-radius: 999px;
    color: var(--color-accent);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(220, 38, 38, 0.4);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.15), inset 0 1px 0 rgba(220, 38, 38, 0.15);
    white-space: nowrap;
}

.biz-inv-featured-text i {
    color: var(--color-gold, #EF4444);
    font-size: 0.75rem;
}

/* Summary stats strip above the accordion */
.biz-inv-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--space-3);
    margin: var(--space-8) 0 var(--space-4);
    padding: var(--space-5);
    background: linear-gradient(135deg, rgba(30, 12, 12, 0.85) 0%, rgba(10, 3, 3, 0.85) 100%);
    border: 1px solid rgba(220, 38, 38, 0.35);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(220, 38, 38, 0.15);
}

.biz-inv-stat {
    text-align: center;
    padding: 6px 4px;
    border-right: 1px solid rgba(220, 38, 38, 0.15);
}

.biz-inv-stat:last-child { border-right: none; }

@media (max-width: 900px) {
    .biz-inv-stat { border-right: none; border-bottom: 1px solid rgba(220, 38, 38, 0.15); padding-bottom: var(--space-3); }
    .biz-inv-stat:last-child { border-bottom: none; padding-bottom: 6px; }
}

.biz-inv-stat-value {
    display: block;
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--color-accent);
    font-family: var(--font-mono, 'Courier New', monospace);
    letter-spacing: 0.05em;
    line-height: 1;
    text-shadow: 0 0 20px rgba(220, 38, 38, 0.4);
    margin-bottom: 4px;
}

.biz-inv-stat-label {
    display: block;
    font-size: 0.62rem;
    color: var(--color-medium-gray);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 700;
}

.biz-inv-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0 auto var(--space-5);
    padding: 8px 16px;
    background: rgba(220, 38, 38, 0.08);
    border: 1px dashed rgba(220, 38, 38, 0.3);
    border-radius: 999px;
    color: #FCA5A5;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    max-width: fit-content;
}
.biz-inv-hint i { color: var(--color-accent); }

/* Accordion container */
.biz-inventory {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

/* Individual category card */
.biz-category {
    background: rgba(10, 5, 5, 0.85);
    border: 1px solid rgba(220, 38, 38, 0.28);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color var(--transition-base), box-shadow var(--transition-base), transform var(--transition-base);
}

.biz-category:hover {
    border-color: rgba(220, 38, 38, 0.6);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.12);
}

.biz-category[open] {
    border-color: var(--color-accent);
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.2);
    background: rgba(15, 6, 6, 0.9);
}

/* Category header (summary) */
.biz-category-summary {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-5);
    cursor: pointer;
    list-style: none;
    user-select: none;
    outline: none;
    position: relative;
    transition: background var(--transition-base);
}

.biz-category-summary:hover { background: rgba(220, 38, 38, 0.05); }
.biz-category-summary::-webkit-details-marker { display: none; }
.biz-category-summary::marker { display: none; content: ''; }
.biz-category-summary:focus-visible {
    background: rgba(220, 38, 38, 0.1);
    outline: 2px solid var(--color-accent);
    outline-offset: -2px;
}

.biz-category-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.2) 0%, rgba(139, 27, 27, 0.15) 100%);
    border: 1px solid rgba(220, 38, 38, 0.4);
    border-radius: 10px;
    color: var(--color-accent);
    font-size: 1.05rem;
    transition: all var(--transition-base);
}

.biz-category[open] .biz-category-icon {
    background: linear-gradient(135deg, var(--color-accent) 0%, #7f1d1d 100%);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.45);
}

.biz-category-title {
    flex: 1 1 auto;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 0.02em;
    line-height: 1.25;
}

.biz-category-tag {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    background: rgba(220, 38, 38, 0.15);
    border: 1px solid rgba(220, 38, 38, 0.4);
    border-radius: 999px;
    color: #FCA5A5;
    font-size: 0.58rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    flex-shrink: 0;
}

.biz-category-tag.warning {
    background: rgba(251, 146, 60, 0.15);
    border-color: rgba(251, 146, 60, 0.5);
    color: #FDBA74;
}

.biz-category-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 26px;
    padding: 0 10px;
    background: rgba(220, 38, 38, 0.25);
    border: 1px solid rgba(220, 38, 38, 0.5);
    border-radius: 999px;
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 800;
    font-family: var(--font-mono, 'Courier New', monospace);
    flex-shrink: 0;
}

.biz-category[open] .biz-category-count {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-white);
    box-shadow: 0 0 12px rgba(220, 38, 38, 0.5);
}

.biz-category-chevron {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: var(--color-accent);
    font-size: 0.85rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.biz-category[open] .biz-category-chevron { transform: rotate(180deg); }

/* Category body */
.biz-category-body {
    padding: 0 var(--space-5) var(--space-5);
    border-top: 1px solid rgba(220, 38, 38, 0.15);
    animation: bizCategoryOpen 0.35s ease-out;
}

@keyframes bizCategoryOpen {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.biz-category-desc {
    font-size: 0.85rem;
    color: var(--color-medium-gray);
    font-style: italic;
    line-height: 1.55;
    margin: var(--space-4) 0 var(--space-4);
    padding-left: var(--space-3);
    border-left: 2px solid rgba(220, 38, 38, 0.4);
}

/* Item list */
.biz-inv-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.biz-inv-row {
    display: grid;
    grid-template-columns: minmax(240px, 1.1fr) 2fr;
    gap: var(--space-4);
    align-items: center;
    padding: 12px var(--space-3);
    background: rgba(30, 12, 12, 0.5);
    border-radius: var(--radius-sm);
    border-left: 3px solid transparent;
    transition: background var(--transition-base), border-color var(--transition-base);
}

.biz-inv-row:hover {
    background: rgba(60, 15, 15, 0.55);
    border-left-color: var(--color-accent);
}

@media (max-width: 720px) {
    .biz-inv-row {
        grid-template-columns: 1fr;
        gap: 6px;
    }
}

.biz-inv-name {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 0.01em;
    line-height: 1.3;
}

.biz-inv-flag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(220, 38, 38, 0.25);
    border-radius: 4px;
    font-size: 0.66rem;
    font-weight: 600;
    color: var(--color-medium-gray);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.biz-inv-tag {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    background: rgba(220, 38, 38, 0.12);
    border: 1px solid rgba(220, 38, 38, 0.35);
    border-radius: 4px;
    font-size: 0.6rem;
    font-weight: 700;
    color: #FCA5A5;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.biz-inv-tag.warning {
    background: rgba(251, 146, 60, 0.15);
    border-color: rgba(251, 146, 60, 0.45);
    color: #FDBA74;
}

.biz-inv-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

@media (max-width: 720px) {
    .biz-inv-specs { justify-content: flex-start; }
}

.biz-inv-spec {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(220, 38, 38, 0.18);
    border-radius: 6px;
    font-size: 0.74rem;
    font-weight: 600;
    color: #E5E7EB;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.biz-inv-spec i {
    color: var(--color-accent);
    font-size: 0.72rem;
    opacity: 0.85;
}

/* Footnote */
.biz-inv-footnote {
    margin: var(--space-6) auto 0;
    padding: var(--space-3) var(--space-4);
    background: rgba(15, 5, 5, 0.6);
    border-left: 3px solid rgba(220, 38, 38, 0.4);
    border-radius: 4px;
    font-size: 0.75rem;
    line-height: 1.5;
    color: var(--color-medium-gray);
    max-width: 900px;
}

.biz-inv-footnote i {
    color: var(--color-accent);
    margin-right: 6px;
}

/* --- Hub network + office grids --- */
.biz-hubs-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: var(--space-8);
}

.biz-hub-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(220, 38, 38, 0.12);
    border: 1px solid rgba(220, 38, 38, 0.45);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #FCA5A5;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.biz-hub-chip i {
    color: var(--color-accent);
    font-size: 0.7rem;
}

.biz-offices {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--space-4);
}

.biz-office {
    padding: var(--space-5);
    background: rgba(15, 5, 5, 0.75);
    border: 1px solid rgba(220, 38, 38, 0.25);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.biz-office:hover {
    border-color: var(--color-accent);
    transform: translateY(-2px);
}

.biz-office-flag {
    font-size: 1.3rem;
    color: var(--color-gold);
    margin-bottom: var(--space-2);
}

.biz-office-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 var(--space-3);
}

.biz-office-address {
    color: var(--color-medium-gray);
    line-height: 1.5;
    font-size: 0.85rem;
    margin: 0 0 var(--space-2);
}

.biz-office-hours {
    color: var(--color-dark-gray);
    font-size: 0.72rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.biz-office-hours i {
    color: var(--color-accent);
}

/* --- Leadership tier labels (Executive · Corporate · Advisory) --- */
.biz-tier-label {
    display: block;
    text-align: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.28em;
    margin: var(--space-8) 0 var(--space-4);
    padding-top: var(--space-4);
    position: relative;
}

.biz-tier-label:not(.first) {
    border-top: 1px dashed rgba(220, 38, 38, 0.3);
}

.biz-tier-label.first { margin-top: 0; padding-top: 0; }

/* --- Leadership team --- */
.biz-leaders {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--space-4);
}

/* When the tier contains a single member (the CEO), center them at fixed width
   instead of stretching to full container width */
.biz-leaders.tier-single {
    display: flex;
    justify-content: center;
}

.biz-leaders.tier-single .biz-leader {
    max-width: 340px;
    flex: 0 1 340px;
}

.biz-leader {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--space-6);
    background: rgba(10, 5, 5, 0.8);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: var(--radius-xl);
    text-decoration: none;
    color: var(--color-white);
    transition: all var(--transition-base);
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.biz-leader:hover {
    transform: translateY(-6px);
    border-color: var(--color-accent);
    box-shadow: 0 20px 50px rgba(220, 38, 38, 0.3);
}

.biz-leader-avatar {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(239, 68, 68, 0.55);
    background: linear-gradient(135deg, #1a0505 0%, var(--color-accent) 100%);
    margin-bottom: var(--space-4);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

.biz-leader-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.biz-leader-avatar-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--color-white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.biz-leader-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-white);
    margin: 0 0 4px;
    line-height: 1.2;
}

.biz-leader-title {
    font-size: 0.7rem;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
    margin: 0 0 var(--space-2);
    line-height: 1.4;
}

.biz-leader-callsign {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.4);
    border-radius: 999px;
    font-size: 0.65rem;
    color: var(--color-gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin: 0 0 var(--space-4);
}

.biz-leader-cta {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--color-medium-gray);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: color var(--transition-base);
}

.biz-leader-cta i {
    margin-left: 6px;
    transition: transform var(--transition-base);
}

.biz-leader:hover .biz-leader-cta {
    color: var(--color-accent);
}

.biz-leader:hover .biz-leader-cta i {
    transform: translateX(4px);
}

/* --- Strategic partners --- */
.biz-partners {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-4);
}

.biz-partner {
    padding: var(--space-6);
    background: rgba(15, 5, 5, 0.75);
    border: 1px solid rgba(220, 38, 38, 0.25);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.biz-partner:hover {
    border-color: var(--color-accent);
    transform: translateY(-2px);
}

.biz-partner-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-white);
    margin: 0 0 6px;
}

.biz-partner-location {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
    margin: 0 0 var(--space-3);
}

.biz-partner-desc {
    color: var(--color-medium-gray);
    line-height: 1.65;
    margin: 0 0 var(--space-4);
    font-size: 0.9rem;
}

.biz-partner-caps {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.biz-partner-cap {
    padding: 4px 10px;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 999px;
    color: #FCA5A5;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* --- Past performance timeline --- */
.biz-performance {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    max-width: 640px;
    margin: 0 auto;
}

.biz-performance-year {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: var(--space-4);
    align-items: center;
    padding: var(--space-4);
    background: rgba(15, 5, 5, 0.7);
    border: 1px solid rgba(220, 38, 38, 0.25);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.biz-performance-year:hover {
    border-color: var(--color-accent);
    transform: translateX(4px);
}

.biz-performance-badge {
    padding: 8px 12px;
    background: var(--color-gold);
    color: #1a0505;
    font-weight: 800;
    font-size: 1rem;
    text-align: center;
    border-radius: var(--radius-sm);
    letter-spacing: 0.05em;
}

.biz-performance-clients {
    color: var(--color-white);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.5;
}

.biz-performance-clients strong {
    color: var(--color-accent);
    letter-spacing: 0.05em;
}

/* --- Procurement / contact section --- */
.biz-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--space-4);
}

.biz-contact-card {
    padding: var(--space-5);
    background: rgba(15, 5, 5, 0.75);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: var(--radius-lg);
    text-align: center;
    text-decoration: none;
    color: var(--color-white);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
}

.biz-contact-card:hover {
    border-color: var(--color-accent);
    background: rgba(60, 15, 15, 0.85);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(220, 38, 38, 0.2);
}

.biz-contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gold) 0%, #991B1B 100%);
    color: var(--color-white);
    font-size: 1.1rem;
    margin-bottom: var(--space-2);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.35);
}

.biz-contact-label {
    font-size: 0.65rem;
    color: var(--color-medium-gray);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 700;
}

.biz-contact-value {
    font-size: 0.95rem;
    color: var(--color-white);
    font-weight: 700;
    word-break: break-word;
}

.biz-contact-card:hover .biz-contact-value {
    color: var(--color-accent);
}
