/* Mini-Reset & Base Variables */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg-dark: #0f1115;
    --card-bg: #16191f;
    --text-main: #e0e0e0;
    --text-dim: #999999;
    --accent-amber: #d4af37;
    --accent-red: #d32f2f;
    --border-color: #2a2d35;
}

body {
    font-family: system-ui, -apple-system, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Container */
.metro-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

/* Hero Section (3-Column Layout) */
.metro-hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 5px solid var(--accent-amber); /* 5px thick gold border */
    gap: 20px;
}

.brand-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 180px; /* Fixed width to keep center text perfectly balanced */
    flex-shrink: 0;
}

.brand-logo {
    height: 70px;
    width: auto;
    object-fit: contain;
}

/* Mazon-Nahon Feathered Halo */
.halo-effect {
    background-color: #fcf9f2;
    padding: 10px 20px;
    border-radius: 50%;
    box-shadow: 0 0 25px 15px #fcf9f2;
}

/* RSHM Branding */
.rshm-logo {
    height: 75px; 
}

.rshm-text {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: bold;
    margin-top: 12px;
    text-align: center;
    white-space: nowrap;
}

/* Center Column */
.header-center {
    flex: 1;
    text-align: center;
}

.metro-hero h1 {
    font-size: 2.4rem;
    color: var(--accent-amber); /* Text color inverted to Gold */
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.hero-sub {
    font-size: 1.2rem;
    color: #ffffff; /* Subtitle color inverted to stark White */
    max-width: 700px;
    margin: 0 auto 1.5rem auto;
}

/* Flags Container */
.ghost-flags-container {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.flag {
    width: 28px;
    height: 28px;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.4);
    object-fit: cover;
}

/* The Ghost Protocol (Updated Opacity & Grayscale) */
.ghost-flag {
    filter: grayscale(60%);
    opacity: 0.65;
    cursor: not-allowed;
    transition: opacity 0.3s ease;
}

.ghost-flag:hover {
    opacity: 0.8;
}

.active-flag {
    border: 2px solid var(--accent-amber);
    opacity: 1;
}

/* Mobile Adjustments for Header */
@media (max-width: 768px) {
    .metro-hero {
        flex-direction: column;
        padding-bottom: 1.5rem;
        gap: 35px;
    }
    .brand-col {
        width: auto;
    }
    .metro-hero h1 {
        font-size: 2rem;
    }
}

/* Grid Layout */
.metro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

/* Data Panels (Static, Non-Clickable Design) */
.data-card {
    background-color: var(--card-bg);
    /* עיצוב לוח בקרה תעשייתי: ללא מסגרת מלאה, עם קו עוגן ימני חזק */
    border: none;
    border-right: 5px solid var(--accent-amber);
    border-radius: 8px 0 0 8px; /* פינות מעוגלות רק בצד שמאל, שטוח בימין */
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25); /* צל עמוק וסטטי, ללא אנימציית מעבר */
}

.data-card h2 {
    color: var(--accent-amber);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    /* קו תחתון מקווקו לתחושת שרטוט טכני/הנדסי */
    border-bottom: 1px dashed #444a59; 
}

/* המחלקה נשארה ריקה בכדי למנוע שגיאות בקוד ה-HTML המקורי שעדיין משתמש בה */
.border-accent {
}

.data-list {
    list-style: none;
}

.data-list li {
    margin-bottom: 1.2rem;
    font-size: 1rem;
}

.data-list strong {
    color: #ffffff;
    font-weight: 700;
}

.ip-note {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px dashed var(--border-color);
    color: var(--text-dim);
    font-size: 0.9rem !important;
}

/* Logistics Section */
.logistics-section {
    background-color: #0a0b0e;
    border: 1px solid var(--border-color);
    padding: 3rem 2rem;
    border-radius: 8px;
}

.logistics-section h2 {
    text-align: center;
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 3rem;
}

.stepper-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.step-item {
    text-align: center;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--card-bg);
    border: 2px solid var(--accent-amber);
    color: var(--accent-amber);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0 auto 1rem auto;
}

.step-item h3 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.step-item p {
    font-size: 0.95rem;
    color: var(--text-dim);
}

/* Logistics Step Icons */
.step-icon {
    width: 100%;
    max-width: 140px; /* שומר על פרופורציות מדויקות לגריד */
    height: auto;
    display: block;
    margin: 0 auto 1.2rem auto;
    border-radius: 6px;
    background-color: var(--card-bg); /* מספק רקע כהה מדויק לתמונה השקופה */
    /* מסגרת ענבר שקופה והצללה ליצירת עומק תעשייתי */
    border: 1px solid rgba(212, 175, 55, 0.15); 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Call to Action Button */
.cta-wrapper {
    text-align: center;
    margin-top: 3rem;
}

.btn-action {
    display: inline-block;
    background-color: var(--accent-amber);
    color: #000000;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 1rem 3rem;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.btn-action:hover {
    background-color: #ffffff;
    transform: translateY(-2px);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .metro-hero h1 {
        font-size: 2rem;
    }
    
    .metro-container {
        padding: 1.5rem 1rem;
    }
    
    .logistics-section {
        padding: 2rem 1.5rem;
    }
    
    .border-accent {
        border-right: none;
        border-top: 4px solid var(--accent-amber);
    }
}