/* --- Language Dropdown & Header Fixes --- */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.lang-dropdown {
    position: relative;
    display: inline-block;
}

.lang-drop-trigger {
    background: rgba(255, 255, 255, 0.05);
    color: var(--stark-white);
    border: 1px solid var(--silver-border);
    padding: 8px 12px;
    cursor: pointer;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    transition: 0.3s;
}

.lang-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(10px);
    min-width: 160px;
    border: 1px solid var(--silver-border);
    z-index: 1001;
    padding-top: 5px; /* Bridge Fix */
}

.lang-dropdown:hover .lang-menu {
    display: block;
}

.lang-menu a {
    color: var(--stark-silver);
    padding: 12px 15px;
    display: block;
    text-decoration: none;
    font-size: 11px;
    font-weight: bold;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.lang-menu a:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-accent);
}

/* --- Keep all your existing .products-wrapper, .dossier-panel, and .orbit-ring styles below --- */

.products-wrapper { padding: 40px 8%; display: flex; flex-direction: column; gap: 60px; }

.dossier-panel {
    background: var(--panel-dark); padding: 80px; border: 1px solid var(--silver-border);
    backdrop-filter: blur(15px); position: relative; box-shadow: 0 30px 60px rgba(0,0,0,0.8);
}
.dossier-panel.gold-border { border-right: 6px solid var(--gold-accent); }

.panel-tag { position: absolute; top: 25px; left: 40px; font-size: 10px; font-weight: 800; letter-spacing: 3px; color: var(--stark-silver); }
.panel-tag.gold-text { color: var(--stark-white); }

.product-layout { display: flex; align-items: center; gap: 80px; }
.product-layout.reverse { flex-direction: row-reverse; }
.visual-side { flex: 1; display: flex; justify-content: center; }
.info-side { flex: 1.5; }

.panel-title { font-size: 48px; font-weight: 900; letter-spacing: -1px; margin-bottom: 10px; }
.tech-divider { width: 80px; height: 3px; background: var(--stark-white); margin-bottom: 30px; }
.tech-divider.gold { background: var(--gold-accent); box-shadow: 0 0 10px var(--gold-accent); }

.description { font-size: 16px; color: var(--stark-silver); line-height: 1.8; margin-bottom: 30px; }
.tagline { font-size: 13px; font-weight: 900; letter-spacing: 4px; color: var(--stark-gray); margin-bottom: 30px; }

.jarvis-status-card { background: #000; padding: 50px; border: 1px solid var(--silver-border); text-align: center; width: 300px; }
/* New Orbit Container styling */
.orbit-container {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.jarvis-core-text {
    color: #16c3cf;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgb(51, 116, 201); /* 100% White Glow */
    z-index: 10;
}

.orbit-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid transparent;
    filter: drop-shadow(0 0 10px rgba(0, 238, 255, 0.8));
}

.ring-1 {
    width: 100px;
    height: 100px;
    border-top-color: hsl(182, 100%, 50%);
    border-bottom-color: hsl(182, 100%, 50%);
    animation: rotate 3s linear infinite;
}

.ring-2 {
    width: 150px;
    height: 150px;
    border: 2px dashed rgba(56, 197, 207, 0.4);
    animation: rotate-reverse 6s linear infinite;
}

.ring-3 {
    width: 190px;
    height: 190px;
    border-left-color: hsl(182, 100%, 50%);
    border-right-color: hsl(182, 100%, 50%);
    animation: rotate 10s linear infinite;
}

/* Updated Pulse for White Theme */
.status-indicator { color: var(--stark-white); }
.pulse { 
    background: #fff; 
    box-shadow: 0 0 10px #fff; 
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes rotate-reverse {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

/* Updated Status Indicator to Tactical Green */
.status-indicator { 
    font-size: 11px; 
    letter-spacing: 3px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 10px; 
    color: #00ff88; /* Tactical Green Text */
    font-weight: bold; 
}

/* Updated Pulse Dot to Tactical Green */
.pulse { 
    width: 8px; 
    height: 8px; 
    background: #00ff88; /* Tactical Green Dot */
    border-radius: 50%; 
    box-shadow: 0 0 10px #00ff88; /* Green Glow */
    animation: pulse-ring 2s infinite; 
}

/* Keep the orbit text and rings white as previously requested */
.jarvis-core-text {
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 1);
}

.orbit-ring {
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
}

@keyframes pulse-ring { 0% { opacity: 1; } 50% { opacity: 0.3; } 100% { opacity: 1; } }

.action-btn { padding: 15px 35px; background: var(--stark-white); color: #000; border: none; font-weight: 900; font-size: 11px; text-transform: uppercase; cursor: pointer; transition: 0.3s; }
.action-btn:hover { background: var(--gold-accent); box-shadow: 0 0 20px var(--gold-glow); }