/* ==========================================================================
   أوركا ORCA - المذكرة الاستثمارية والتقرير المالي المؤسسي 2026
   Design Theme: Institutional VC Financial Prospectus (خط ثمانية)
   Enhanced Mobile Responsiveness (التجاوب الكامل مع الجوال والأجهزة الذكية)
   ========================================================================== */

@font-face {
  font-family: 'ThmanyahSans';
  src: url('font/thmanyahsans-Regular.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Institutional Palette (Deep Executive Navy & Warm Muted Gold) */
  --bg-main: #0b1325;
  --bg-surface: #111c33;
  --bg-card: #152342;
  --bg-card-hover: #1a2a4f;
  
  --border-subtle: rgba(226, 232, 240, 0.08);
  --border-medium: rgba(226, 232, 240, 0.15);
  --border-gold: rgba(212, 175, 55, 0.4);

  /* Refined Financial Colors */
  --gold-primary: #d4af37;
  --gold-dark: #b38f24;
  --gold-subtle: rgba(212, 175, 55, 0.1);

  --emerald-primary: #10b981;
  --emerald-dark: #059669;
  --emerald-subtle: rgba(16, 185, 129, 0.1);

  --slate-blue: #38bdf8;
  --slate-subtle: rgba(56, 189, 248, 0.1);

  --rose-subtle: rgba(244, 63, 94, 0.1);

  /* Typography */
  --font-ar: 'ThmanyahSans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-en: 'Inter', system-ui, sans-serif;

  /* Executive Text Hierarchy */
  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  --text-dim: #64748b;

  /* Form & Component Metrics */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 15px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-ar);
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.6;
  direction: rtl;
  overflow-x: hidden;
  font-feature-settings: "cv02", "cv03", "cv04", "cv11";
  -webkit-font-smoothing: antialiased;
  background-image: 
    radial-gradient(ellipse at 50% 0%, rgba(212, 175, 55, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse at 10% 100%, rgba(16, 185, 129, 0.03) 0%, transparent 50%);
}

/* Base Card Style */
.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.glass-card:hover {
  border-color: var(--border-medium);
}

/* Utilities */
.text-gold { color: var(--gold-primary) !important; }
.text-cyan { color: var(--slate-blue) !important; }
.text-emerald { color: var(--emerald-primary) !important; }
.text-purple { color: #c084fc !important; }
.text-rose { color: #f87171 !important; }
.font-bold { font-weight: 700; }
.underline-link { text-decoration: underline; text-underline-offset: 4px; }

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 19, 37, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 12px 0;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-weight: 700;
  font-size: 18px;
  color: var(--text-primary);
  letter-spacing: -0.3px;
  line-height: 1.2;
}

.brand-highlight {
  color: var(--gold-primary);
}

.brand-sub {
  font-size: 10.5px;
  color: var(--text-muted);
  font-weight: 500;
}

.nav-links {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  white-space: nowrap;
  padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.nav-links::-webkit-scrollbar {
  display: none;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: all 0.15s ease;
  flex-shrink: 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--gold-primary);
  background: var(--gold-subtle);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.badge-investor {
  background: rgba(212, 175, 55, 0.08);
  color: var(--gold-primary);
  border: 1px solid var(--border-gold);
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 11.5px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold-primary);
  color: #0b1325;
  border: none;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-family: var(--font-ar);
  font-weight: 700;
  font-size: 12.5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.15s ease;
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--gold-dark);
}

/* Layout */
.main-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 28px 20px 60px 20px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

/* Hero Section */
.hero-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-header {
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--emerald-subtle);
  color: var(--emerald-primary);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
  max-width: 100%;
}

.badge-pulse {
  width: 7px;
  height: 7px;
  background-color: var(--emerald-primary);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-title {
  font-size: clamp(22px, 4vw, 34px);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 12px;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: clamp(14px, 2.5vw, 16px);
  color: var(--text-secondary);
  line-height: 1.7;
}

/* MVP Proof of Concept Highlight Banner */
.mvp-proof-banner {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, var(--bg-surface) 0%, rgba(16, 185, 129, 0.08) 100%);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
}

.mvp-banner-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(16, 185, 129, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.mvp-banner-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex-grow: 1;
}

.mvp-banner-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--emerald-primary);
}

.mvp-banner-text {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.65;
}

.mvp-banner-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 10px 18px;
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.stat-num {
  font-size: 32px;
  font-weight: 800;
  font-family: var(--font-en), var(--font-ar);
  line-height: 1;
}

.stat-lbl {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
  white-space: nowrap;
}

/* Fleet Direct Link Banner Style */
.fleet-link-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: linear-gradient(135deg, var(--bg-surface) 0%, rgba(212, 175, 55, 0.06) 100%);
  border: 1px solid var(--border-gold);
  padding: 24px;
  border-radius: var(--radius-lg);
  flex-wrap: wrap;
}

.fleet-link-content {
  display: flex;
  align-items: center;
  gap: 16px;
}

.fleet-link-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--gold-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.fleet-link-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.fleet-link-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
}

.fleet-link-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.btn-fleet-visit {
  padding: 10px 20px;
  font-size: 13.5px;
  border-radius: var(--radius-md);
}

.fleet-summary-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-size: 13px;
  color: var(--text-secondary);
}

/* KPI Cards Grid */
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
}

.kpi-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
}

.kpi-card.accent-gold {
  border-color: rgba(16, 185, 129, 0.4);
  background: linear-gradient(180deg, var(--bg-card) 0%, rgba(16, 185, 129, 0.04) 100%);
}

.kpi-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.kpi-title {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
}

.kpi-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  background: rgba(226, 232, 240, 0.05);
  color: var(--text-secondary);
  flex-shrink: 0;
}

.icon-gold { color: var(--gold-primary); background: var(--gold-subtle); }
.icon-cyan { color: var(--slate-blue); background: var(--slate-subtle); }
.icon-emerald { color: var(--emerald-primary); background: var(--emerald-subtle); }
.icon-purple { color: #c084fc; background: rgba(192, 132, 252, 0.1); }

.kpi-value {
  font-size: clamp(22px, 3.5vw, 26px);
  font-weight: 800;
  font-family: var(--font-en), var(--font-ar);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.5px;
}

.kpi-footer {
  font-size: 12px;
  color: var(--text-dim);
}

.tag-emerald {
  background: var(--emerald-subtle);
  color: var(--emerald-primary);
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Sections Global */
.section-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 12px;
}

.section-title-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  background: rgba(226, 232, 240, 0.05);
  color: var(--gold-primary);
  flex-shrink: 0;
}

.section-title {
  font-size: clamp(17px, 3vw, 21px);
  font-weight: 700;
  color: var(--text-primary);
}

.section-desc {
  font-size: 13px;
  color: var(--text-muted);
}

/* Table View with Sticky Mobile Columns & Touch Scroll */
.table-card {
  padding: 0;
  overflow: hidden;
  background: var(--bg-card);
  border-radius: var(--radius-md);
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  position: relative;
}

.financial-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  font-size: 13px;
  min-width: 800px;
}

.financial-table th {
  background: var(--bg-surface);
  color: var(--text-muted);
  font-weight: 700;
  padding: 12px 10px;
  border-bottom: 1px solid var(--border-subtle);
  white-space: nowrap;
  font-size: 12px;
}

.financial-table td {
  padding: 10px 10px;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  white-space: nowrap;
  font-family: var(--font-en), var(--font-ar);
  font-variant-numeric: tabular-nums;
}

.financial-table tbody tr:hover {
  background: rgba(226, 232, 240, 0.03);
}

.financial-table tbody tr.steady-state-row {
  background: rgba(212, 175, 55, 0.02);
}

.financial-table tfoot tr {
  background: var(--bg-surface);
  font-weight: 700;
}

.financial-table tfoot td {
  border-top: 2px solid var(--emerald-primary);
  color: var(--emerald-primary);
  font-size: 13.5px;
}

/* Simulator Section */
.simulator-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 900px) {
  .simulator-grid {
    grid-template-columns: 1fr;
  }
}

.sim-controls-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--bg-card);
  padding: 20px;
}

.card-subtitle {
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 10px;
  color: var(--text-primary);
}

.control-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.control-label-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-secondary);
  flex-wrap: wrap;
  gap: 4px;
}

.control-val {
  font-weight: 700;
  font-family: var(--font-en), var(--font-ar);
}

input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: rgba(226, 232, 240, 0.12);
  outline: none;
  cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold-primary);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.slider-ticks {
  display: flex;
  justify-content: space-between;
  font-size: 10.5px;
  color: var(--text-dim);
}

.btn-reset {
  margin-top: 4px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  padding: 10px;
  border-radius: var(--radius-sm);
  font-family: var(--font-ar);
  font-weight: 600;
  font-size: 12.5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.15s ease;
  width: 100%;
}

.btn-reset:hover {
  background: rgba(226, 232, 240, 0.08);
  color: var(--text-primary);
}

/* Results Side */
.sim-results-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--bg-card);
  padding: 20px;
}

.sim-metric-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sim-metric-box.highlight-box {
  background: linear-gradient(180deg, var(--bg-surface) 0%, rgba(16, 185, 129, 0.06) 100%);
  border-color: rgba(16, 185, 129, 0.3);
}

.sim-metric-label {
  font-size: 11.5px;
  color: var(--text-muted);
  font-weight: 600;
}

.sim-metric-val {
  font-size: clamp(20px, 3.5vw, 24px);
  font-weight: 800;
  font-family: var(--font-en), var(--font-ar);
  font-variant-numeric: tabular-nums;
}

.sim-metric-sub {
  font-size: 11px;
  color: var(--text-dim);
}

/* Sensitivity Section */
.sensitivity-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--bg-card);
  padding: 20px;
}

.sensitivity-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.sensitivity-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  font-size: 12.5px;
  min-width: 580px;
}

.sensitivity-table th, .sensitivity-table td {
  padding: 10px 12px;
  border: 1px solid var(--border-subtle);
}

.th-corner {
  background: var(--bg-surface);
  width: 20%;
}

.th-group {
  background: var(--bg-surface);
  color: var(--gold-primary);
}

.badge-scenario {
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 4px;
  display: inline-block;
  margin-top: 2px;
}

.tag-rose { background: var(--rose-subtle); color: #f87171; }

.td-scenario-name {
  background: var(--bg-surface);
  font-weight: 700;
}

.cell-sens {
  cursor: pointer;
  transition: all 0.15s ease;
}

.cell-sens:hover {
  background: rgba(212, 175, 55, 0.05);
}

.cell-sens.active-base-cell {
  background: var(--gold-subtle) !important;
  border: 2px solid var(--gold-primary) !important;
}

.badge-base-case {
  font-size: 9.5px;
  color: var(--gold-primary);
  font-weight: 700;
  margin-bottom: 2px;
}

.sens-ebitda {
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-en), var(--font-ar);
}

.sens-margin {
  font-size: 11px;
  color: var(--text-dim);
}

.sensitivity-note {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  padding: 12px 14px;
  border-radius: var(--radius-md);
  font-size: 12.5px;
  color: var(--text-secondary);
}

/* Investment Required Section */
.investment-summary-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid var(--border-gold) !important;
  background: linear-gradient(180deg, var(--bg-card) 0%, rgba(212, 175, 55, 0.03) 100%) !important;
  padding: 20px;
}

.inv-total-banner {
  text-align: center;
  background: var(--bg-surface);
  border: 1px solid var(--border-gold);
  padding: 16px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.inv-banner-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
}

.inv-banner-val {
  font-size: clamp(24px, 5vw, 34px);
  font-weight: 800;
  font-family: var(--font-en), var(--font-ar);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--gold-primary);
}

.inv-equity-badge {
  background: var(--emerald-subtle);
  color: var(--emerald-primary);
  border: 1px solid var(--emerald-dark);
  font-size: 14px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 20px;
  font-family: var(--font-ar);
}

.inv-banner-sub {
  font-size: 12px;
  color: var(--text-secondary);
}

.inv-breakdown-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
}

.inv-box {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 14px;
}

.inv-box-header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.inv-box-icon {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  background: rgba(226, 232, 240, 0.05);
  flex-shrink: 0;
}

.inv-box-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
}

.inv-box-amount {
  font-size: 22px;
  font-weight: 800;
  font-family: var(--font-en), var(--font-ar);
}

.inv-box-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

.inv-return-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 12px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  padding: 14px;
  border-radius: var(--radius-md);
  font-size: 12.5px;
  text-align: center;
}

.ret-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.ret-label {
  font-size: 11px;
  color: var(--text-muted);
}

.ret-val {
  font-size: 14px;
  font-weight: 700;
}

/* Pitch Cards Grid */
.pitch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
}

.pitch-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--bg-card);
  padding: 18px;
}

.pitch-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  background: rgba(226, 232, 240, 0.05);
  color: var(--gold-primary);
  flex-shrink: 0;
}

.pitch-card-title {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--text-primary);
}

.pitch-card-desc {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border-subtle);
  padding: 20px 0;
  background: var(--bg-surface);
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
  color: var(--text-muted);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-logo-img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.footer-copy a {
  color: var(--gold-primary);
  text-decoration: none;
}

.hidden {
  display: none !important;
}

/* Mobile Media Queries (< 768px) */
@media (max-width: 768px) {
  .nav-container {
    padding: 0 16px;
    justify-content: space-between;
  }
  .nav-actions {
    width: 100%;
    justify-content: space-between;
    margin-top: 6px;
  }
  .main-content {
    padding: 20px 14px 40px 14px;
    gap: 28px;
  }
  .glass-card {
    padding: 16px;
  }
  .inv-return-bar {
    grid-template-columns: 1fr 1fr;
  }
  .fleet-link-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .btn-fleet-visit {
    width: 100%;
    justify-content: center;
  }
}

@media print {
  body { background: #fff; color: #000; }
  .navbar, .btn-reset, .btn-primary { display: none !important; }
  .glass-card { background: #fff; border: 1px solid #ccc; color: #000; box-shadow: none; }
  .text-gold, .text-cyan, .text-emerald, .text-purple, .text-rose { color: #000 !important; }
}
