/* --- Design Tokens & Variables --- */
:root {
    /* Colors */
    --bg-dark: #070b14;
    --bg-card-dark: #0f172a;
    --bg-card-light: #ffffff;
    --bg-light: #f8fafc;
    
    --text-main-dark: #f8fafc;
    --text-muted-dark: #94a3b8;
    --text-main-light: #0f172a;
    --text-muted-light: #475569;
    
    --accent-amber: #f59e0b;
    --accent-amber-hover: #fbbf24;
    --accent-amber-glow: rgba(245, 158, 11, 0.2);
    --accent-emerald: #10b981;
    --accent-emerald-dark: #047857;
    --accent-danger: #ef4444;
    --accent-blue: #3b82f6;
    --accent-blue-light: #60a5fa;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Shadows & Effects */
    --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --shadow-light: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --border-glass: rgba(255, 255, 255, 0.08);
    --border-light: #e2e8f0;
    
    /* Layout */
    --max-width: 1200px;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Base Reset & Typography --- */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    background-color: var(--bg-light); 
    color: var(--text-main-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; }

/* Text Utilities */
.bold { font-weight: 700; }
.medium { font-weight: 500; }
.text-right { text-align: right; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-muted-dark { color: var(--text-muted-dark); }
.text-muted-light { color: var(--text-muted-light); }
.text-danger { color: var(--accent-danger); }
.text-emerald { color: var(--accent-emerald-dark); }
.text-amber { color: var(--accent-amber); }
.text-blue-light { color: var(--accent-blue-light); }
.text-white { color: #fff; }
.text-dark { color: var(--bg-dark); }
.text-base { font-size: 1rem; }
.text-large { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 2rem; }
.text-4xl { font-size: 2.25rem; }

/* Spacing & Flex */
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.flex-center { display: flex; justify-content: center; align-items: center; }
.flex-items-center { display: flex; align-items: center; }
.flex-col { display: flex; flex-direction: column; }
.grow { flex-grow: 1; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.w-full { width: 100%; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.pb-4 { padding-bottom: 1rem; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.border-b { border-bottom: 1px solid var(--border-light); }
.border-y { border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); }
.border-dark { border-color: rgba(255,255,255,0.1) !important; }
.h-full { height: 100%; }
.block { display: block; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }
.opacity-90 { opacity: 0.9; }
.opacity-75 { opacity: 0.75; }

.hover-lift { transition: transform var(--transition-fast), box-shadow var(--transition-fast); }
.hover-lift:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

/* Backgrounds & Panels */
.bg-dark { background-color: var(--bg-dark); }
.dark-bg { background-color: var(--bg-card-dark); color: var(--text-main-dark); }
.bg-blue { background-color: var(--accent-blue); }
.bg-gradient-amber { background: linear-gradient(135deg, var(--accent-amber) 0%, #d97706 100%); }

.glass-panel {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 2rem;
    transition: all var(--transition-fast);
}
.hover-border-amber:hover { border-color: rgba(245, 158, 11, 0.5); box-shadow: 0 10px 30px -10px rgba(245, 158, 11, 0.2); }
.hover-border-blue:hover { border-color: rgba(59, 130, 246, 0.5); box-shadow: 0 10px 30px -10px rgba(59, 130, 246, 0.2); }

.bg-effects {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: -1;
    background-color: var(--bg-dark);
    overflow: hidden;
}
.glow { position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.4; }
.glow-1 { width: 600px; height: 600px; background: var(--accent-amber); top: -200px; left: -200px; }
.glow-2 { width: 800px; height: 800px; background: #1e3a8a; bottom: -300px; right: -100px; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.75rem 1.5rem; border-radius: var(--radius-sm);
    font-weight: 600; font-size: 0.875rem; cursor: pointer; border: none;
    transition: all var(--transition-fast);
}
.btn-large { padding: 1rem 2rem; font-size: 1rem; }
.btn-primary { background-color: var(--accent-amber); color: var(--bg-dark); }
.btn-primary:hover { background-color: var(--accent-amber-hover); transform: translateY(-2px); }
.glow-btn { box-shadow: 0 0 20px var(--accent-amber-glow); }
.btn-light { background-color: #fff; color: var(--bg-dark); }
.btn-dark { background-color: var(--bg-dark); color: #fff; }
.btn-dark:hover { background-color: #111827; }
.btn-outline { background: transparent; border: 1px solid rgba(255,255,255,0.2); color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.4); }

/* Landing Layouts */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
.landing-section { padding: 5rem 0; position: relative; z-index: 10; }
.landing-cta { padding: 6rem 0; position: relative; z-index: 10; }
.section-title { font-size: 2.5rem; color: #fff; margin-bottom: 0.5rem; }
.section-subtitle { font-size: 1.25rem; font-weight: 500; }

.section-hidden { display: none; opacity: 0; }
.section-visible { display: block; opacity: 1; animation: fadeIn var(--transition-smooth) forwards; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* Hero */
#landing-section { color: var(--text-main-dark); min-height: 100vh; }
.top-bar {
    background-color: rgba(15, 23, 42, 0.9); backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border-glass); padding: 0.5rem 1rem;
    display: flex; justify-content: center; gap: 1rem; font-size: 0.7rem;
    text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; color: var(--text-muted-dark);
}
.hebrew-text { color: var(--accent-amber); font-weight: 700; }
.navbar {
    position: sticky; top: 0; z-index: 50;
    background: rgba(7, 11, 20, 0.8); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border-glass);
}
.nav-container {
    max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem;
    height: 80px; display: flex; justify-content: space-between; align-items: center;
}
.brand-name { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; letter-spacing: -0.02em; color: #fff; }
.brand-name .accent { color: var(--accent-amber); }
.brand-sub { display: block; font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--text-muted-dark); margin-top: -4px; }
.hero { padding: 5rem 1.5rem; max-width: var(--max-width); margin: 0 auto; text-align: center; position: relative; z-index: 10; }
.badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.25rem 1rem; border-radius: var(--radius-full);
    border: 1px solid rgba(245, 158, 11, 0.3); background: rgba(245, 158, 11, 0.1);
    color: var(--accent-amber); font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 2rem;
}
.hero-title { font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: -0.03em; margin-bottom: 1.5rem; }
.text-gradient { background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-subtitle { font-size: clamp(1rem, 2vw, 1.25rem); color: var(--text-muted-dark); max-width: 800px; margin: 0 auto 3rem; font-weight: 300; }
.metrics-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; max-width: 1000px; margin: 0 auto; }
.metric-card { text-align: center; padding: 1.5rem; }
.border-top-amber { border-top: 3px solid var(--accent-amber); }
.border-top-slate { border-top: 3px solid #475569; }
.metric-label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted-dark); margin-bottom: 0.5rem; }
.metric-value { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; }
.metric-sub { font-size: 0.75rem; color: #64748b; }

/* Image Showcase */
.image-showcase {
    position: relative; border-radius: var(--radius-lg); overflow: hidden;
    border: 1px solid var(--border-glass);
}
.image-showcase img { width: 100%; height: auto; display: block; transition: transform 0.7s; }
.image-showcase:hover img { transform: scale(1.05); }
.image-caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 2rem 1.5rem 1rem; color: #fff; font-size: 0.875rem; font-weight: 500;
}
.glow-panel { box-shadow: 0 20px 40px -10px rgba(0,0,0,0.5); }
.top-right-badge {
    position: absolute; top: 0; right: 0; background: var(--accent-amber); color: var(--bg-dark);
    font-size: 0.7rem; font-weight: 800; padding: 0.25rem 0.75rem; border-bottom-left-radius: var(--radius-md);
}

/* Modal / Lead Capture */
.modal-overlay {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(7, 11, 20, 0.85); backdrop-filter: blur(12px);
    z-index: 100; display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: opacity var(--transition-fast);
}
.modal-overlay.active { opacity: 1; pointer-events: auto; }
.modal-content {
    background: var(--bg-card-dark); border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg); padding: 2.5rem; width: 100%; max-width: 480px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: translateY(20px) scale(0.95); transition: all var(--transition-smooth);
    position: relative;
}
.modal-overlay.active .modal-content { transform: translateY(0) scale(1); }
.close-btn {
    position: absolute; top: 1.25rem; right: 1.5rem;
    background: transparent; border: none; color: var(--text-muted-dark);
    font-size: 1.75rem; cursor: pointer; transition: color var(--transition-fast); line-height: 1;
}
.close-btn:hover { color: #fff; }
.form-group { margin-bottom: 1.25rem; text-align: left; }
.form-group label {
    display: block; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.05em;
    color: var(--text-muted-dark); margin-bottom: 0.5rem; text-transform: uppercase;
}
.form-input, .form-select {
    width: 100%; padding: 0.875rem 1rem;
    background: rgba(7, 11, 20, 0.5); border: 1px solid #334155;
    border-radius: var(--radius-sm); color: #fff; font-size: 0.875rem;
    font-family: var(--font-body); outline: none; transition: border-color var(--transition-fast);
}
.form-input:focus, .form-select:focus { border-color: var(--accent-amber); box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.2); }
.form-select option { background: var(--bg-card-dark); color: #fff; }

/* ==========================================
   PART 2: VIRTUAL DATA ROOM STYLES
   ========================================== */
#vdr-container { background: var(--bg-light); color: var(--text-main-light); }
.vdr-header { background: var(--bg-card-dark); border-bottom: 4px solid var(--accent-amber); position: sticky; top: 0; z-index: 50; box-shadow: var(--shadow-light); }
.vdr-header-content { max-width: var(--max-width); margin: 0 auto; padding: 1rem 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.vdr-title-group { display: flex; align-items: center; gap: 1rem; }
.vdr-icon { font-size: 2rem; }
.vdr-title { color: #fff; font-size: 1.25rem; }
.vdr-subtitle { color: var(--text-muted-dark); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; }
.access-badge { background: #1e293b; border: 1px solid #334155; padding: 0.5rem 1rem; border-radius: var(--radius-sm); font-family: monospace; font-size: 0.75rem; color: var(--accent-emerald); display: flex; align-items: center; gap: 0.5rem; }
.status-dot { width: 8px; height: 8px; background: var(--accent-emerald); border-radius: 50%; box-shadow: 0 0 8px var(--accent-emerald); }

.vdr-tabs { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; display: flex; gap: 0.25rem; overflow-x: auto; }
.tab-btn { padding: 1rem 1.5rem; background: #1e293b; color: var(--text-muted-dark); border: none; border-top: 3px solid transparent; border-radius: var(--radius-md) var(--radius-md) 0 0; font-weight: 500; font-size: 0.875rem; cursor: pointer; transition: all var(--transition-fast); white-space: nowrap; }
.tab-btn:hover { background: #334155; color: #fff; }
.tab-btn.active { background: var(--bg-light); color: var(--text-main-light); border-top-color: var(--accent-amber); font-weight: 700; }

.vdr-body { max-width: var(--max-width); margin: 0 auto; padding: 2rem 1.5rem 4rem; }
.tab-content { display: none; opacity: 0; }
.tab-content.active { display: block; animation: fadeIn var(--transition-smooth) forwards; }

.info-card { background: var(--bg-card-light); border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 2rem; margin-bottom: 2rem; box-shadow: var(--shadow-light); }
.info-card h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.featured-card { border-left: 4px solid var(--bg-card-dark); }

.grid-2-col { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 992px) { .grid-2-col { grid-template-columns: 1fr 1fr; } }
.grid-4-col { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .grid-4-col { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-4-col { grid-template-columns: repeat(4, 1fr); } }

.data-card { background: var(--bg-card-light); border: 1px solid var(--border-light); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-light); display: flex; }
.data-card.flex-col { padding: 1.5rem; }
.dark-card { background: var(--bg-card-dark); color: var(--text-muted-dark); border-color: #334155; padding: 1.5rem; }
.dark-card h4 { color: #fff; }
.card-body { padding: 1.5rem; }

.data-card-header { padding: 1rem 1.5rem; display: flex; justify-content: space-between; align-items: center; font-weight: 700; }
.dark-header { background: var(--bg-card-dark); color: #fff; }
.light-header { background: #f1f5f9; border-bottom: 1px solid var(--border-light); flex-direction: column; align-items: flex-start;}
.light-header p { font-size: 0.75rem; color: var(--text-muted-light); font-weight: 400; margin-top: 0.25rem; }

.table-container { width: 100%; overflow-x: auto; flex-grow: 1;}
.data-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.data-table th, .data-table td { padding: 1rem 1.5rem; border-bottom: 1px solid #f1f5f9; }
.data-table th { background: #f8fafc; font-weight: 600; text-align: left; color: var(--text-muted-light); }
.highlight-row { background: #f8fafc; }
.total-row { border-top: 2px solid var(--border-light); background: #f8fafc; }
.super-total-row { border-top: 2px solid #a7f3d0; background: #ecfdf5; }

.charts-col { display: flex; flex-direction: column; gap: 1.5rem; }
.chart-title { font-size: 0.875rem; text-align: center; margin-bottom: 0.25rem;}
.chart-sub { font-size: 0.75rem; text-align: center; color: var(--text-muted-light); margin-bottom: 1rem;}
.chart-wrapper { position: relative; width: 100%; height: 300px; max-height: 350px; margin: 0 auto; }
.chart-wrapper.compact { height: 200px; max-height: 200px; }

.badge-small { background: var(--accent-amber); color: var(--bg-card-dark); padding: 0.25rem 0.5rem; border-radius: var(--radius-sm); font-size: 0.7rem; }
.badge-warning { background: #fef3c7; color: #92400e; padding: 0.25rem 0.75rem; border-radius: var(--radius-full); font-size: 0.75rem; font-weight: 700; }
.badge-success { background: #d1fae5; color: #065f46; padding: 0.25rem 0.75rem; border-radius: var(--radius-full); font-size: 0.75rem; font-weight: 700; }

.controls-row { display: flex; justify-content: flex-end; margin-bottom: 1rem; }
.toggle-group { background: #e2e8f0; padding: 0.25rem; border-radius: var(--radius-sm); display: flex; }
.toggle-btn { padding: 0.5rem 1.5rem; border: none; background: transparent; border-radius: var(--radius-sm); font-weight: 600; font-size: 0.875rem; color: var(--text-muted-light); cursor: pointer; transition: all var(--transition-fast); }
.toggle-btn.active { background: #fff; color: var(--text-main-light); box-shadow: var(--shadow-light); }

.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; margin-top: 1.5rem; }
.feature-item { background: #f8fafc; padding: 1.5rem; border-radius: var(--radius-md); border: 1px solid var(--border-light); }
.feature-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.feature-item h4 { margin-bottom: 0.5rem; font-size: 1rem;}
.feature-item p { font-size: 0.875rem; color: var(--text-muted-light); }

.list-items { display: flex; flex-direction: column; gap: 1.5rem; }
.list-item { display: flex; gap: 1rem; align-items: flex-start; }
.number-badge { width: 40px; height: 40px; flex-shrink: 0; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-family: var(--font-heading); }
.number-badge.emerald { background: rgba(16, 185, 129, 0.2); color: var(--accent-emerald); border: 1px solid rgba(16, 185, 129, 0.5); }
.number-badge.amber { background: rgba(245, 158, 11, 0.2); color: var(--accent-amber); border: 1px solid rgba(245, 158, 11, 0.5); }
.icon-badge { width: 48px; height: 48px; flex-shrink: 0; border-radius: var(--radius-md); font-size: 1.5rem; display: flex; align-items: center; justify-content: center; }
.icon-badge.indigo { background: #e0e7ff; color: #4f46e5; border: 1px solid #c7d2fe; }
.icon-badge.amber { background: #fef3c7; color: #d97706; border: 1px solid #fde68a; }
.item-title { display: block; font-size: 0.875rem; margin-bottom: 0.25rem; }
.item-desc { font-size: 0.75rem; line-height: 1.6; }

.alert { padding: 1rem; border-radius: var(--radius-md); font-size: 0.875rem; display: flex; gap: 0.75rem; align-items: flex-start; }
.alert-info { background: #eff6ff; border: 1px solid #bfdbfe; color: #1e40af; }
.alert-dark { background: var(--bg-card-dark); color: var(--text-muted-dark); }
.alert-success { background: rgba(16, 185, 129, 0.1); border: 1px solid rgba(16, 185, 129, 0.3); color: #d1fae5; }
.alert-icon { font-size: 1.25rem; line-height: 1; }
.border-left-amber { border-left: 4px solid var(--accent-amber); border-radius: 0 var(--radius-md) var(--radius-md) 0;}
.border-left-emerald { border-left: 4px solid var(--accent-emerald); border-radius: 0 var(--radius-md) var(--radius-md) 0;}
.border-left-blue { border-left: 4px solid var(--accent-blue-light); border-radius: 0 var(--radius-md) var(--radius-md) 0;}

.simulator-controls { display: flex; flex-direction: column; gap: 1rem; }
.input-group { background: #f8fafc; padding: 1rem; border-radius: var(--radius-sm); border: 1px solid var(--border-light); }
.input-group label { display: block; font-size: 0.7rem; font-weight: 700; color: var(--text-muted-light); text-transform: uppercase; margin-bottom: 0.5rem; }
.input-group select { width: 100%; padding: 0.5rem; border-radius: var(--radius-sm); border: 1px solid #cbd5e1; font-family: var(--font-body); outline: none; }
.input-group select:focus { border-color: var(--accent-amber); }
.connector { text-align: center; font-weight: 700; color: #cbd5e1; }
.result-panel { margin-top: auto; padding: 1.5rem; border-radius: var(--radius-md); text-align: center; min-height: 160px; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.result-panel.neutral { background: #f1f5f9; border: 1px solid var(--border-light); color: var(--text-muted-light); }
.result-panel.success { background: #ecfdf5; border: 1px solid #a7f3d0; }
.result-panel.error { background: #fef2f2; border: 1px solid #fecaca; }

.workflow { position: relative; display: flex; flex-direction: column; gap: 1.5rem; flex-grow: 1; }
.workflow-line { position: absolute; left: 20px; top: 10px; bottom: 10px; width: 2px; background: #e2e8f0; z-index: 0; }
.workflow-step { position: relative; z-index: 10; display: flex; gap: 1rem; align-items: flex-start; background: #fff; padding: 0.5rem; border-radius: var(--radius-md); }
.step-number { width: 40px; height: 40px; flex-shrink: 0; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.875rem; box-shadow: var(--shadow-light); border: 4px solid #fff; }
.step-number.dark { background: var(--bg-card-dark); color: #fff; }
.step-number.success { background: var(--accent-emerald); color: #fff; }
.step-title { display: block; font-size: 0.875rem; margin-bottom: 0.25rem; color: var(--text-main-light);}
.step-desc { font-size: 0.75rem; color: var(--text-muted-light); line-height: 1.6; }

.bylaw-card { background: #1e293b; border: 1px solid #334155; padding: 1.5rem; border-radius: var(--radius-md); }
.bylaw-card h5 { font-size: 0.875rem; color: #fff; margin-bottom: 0.5rem; }
.bylaw-card p { font-size: 0.75rem; line-height: 1.6; }
.card-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.highlight-bottom { border-bottom: 4px solid var(--accent-amber); }

/* --- Google Translate Discreet Widget --- */
#google_translate_element { 
    opacity: 0 !important; 
    position: absolute !important; 
    z-index: -1 !important; 
    pointer-events: none !important; 
}
.goog-te-gadget {
    font-family: var(--font-body) !important;
    color: transparent !important;
    font-size: 0 !important;
}
.goog-te-gadget .goog-te-combo {
    color: var(--accent-amber) !important;
    background-color: rgba(15, 23, 42, 0.8) !important;
    border: 1px solid rgba(245, 158, 11, 0.3) !important;
    border-radius: var(--radius-sm) !important;
    padding: 6px 10px !important;
    font-size: 0.65rem !important;
    font-family: var(--font-body) !important;
    outline: none !important;
    margin: 0 !important;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.goog-logo-link { display: none !important; }

/* ===== RESPONSIVE HAMBURGER MENU ===== */

/* Desktop elements hidden on mobile */
.nav-desktop-langs,
.nav-desktop-actions {
    display: flex;
    align-items: center;
}
.nav-desktop-langs { gap: 1.5rem; }
.nav-desktop-actions { gap: 0.75rem; }

/* Hamburger Button */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 8px;
    gap: 5px;
    transition: all 0.3s ease;
    z-index: 200;
}
.hamburger-btn:hover {
    border-color: var(--accent-amber);
}
.hamburger-btn span {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
    transform-origin: center;
}
.hamburger-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    background: var(--accent-amber);
}
.hamburger-btn.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.hamburger-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    background: var(--accent-amber);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(7, 11, 20, 0.6);
    backdrop-filter: blur(4px);
    z-index: 90;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}
.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* Mobile Menu Drawer */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    background: rgba(7, 11, 20, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-left: 1px solid var(--border-glass);
    z-index: 100;
    padding: 6rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    transition: right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow-y: auto;
}
.mobile-menu.active {
    right: 0;
}

/* Mobile Menu Section Labels */
.mobile-menu-label {
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent-amber);
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(245, 158, 11, 0.2);
}

/* Mobile Language Grid */
.mobile-langs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}
.mobile-langs span {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 0;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.5);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
}
.mobile-langs span:hover {
    color: var(--accent-amber);
    border-color: rgba(245, 158, 11, 0.4);
    background: rgba(245, 158, 11, 0.08);
}

/* Mobile Actions */
.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.mobile-actions .btn {
    width: 100%;
    justify-content: center;
    font-size: 0.8rem;
    padding: 0.875rem 1rem;
}

/* Close button area at top of mobile menu */
.mobile-menu-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    color: rgba(255,255,255,0.5);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}
.mobile-menu-close:hover {
    border-color: var(--accent-amber);
    color: var(--accent-amber);
}

/* ===== RESPONSIVE BREAKPOINT ===== */
@media (max-width: 768px) {
    .hamburger-btn {
        display: flex;
    }
    .nav-desktop-langs,
    .nav-desktop-actions {
        display: none;
    }
    .top-bar {
        font-size: 0.55rem;
        padding: 0.4rem 0.75rem;
        gap: 0.5rem;
    }
    .nav-container {
        height: 64px;
        padding: 0 1rem;
    }
}
