/* ============================================
   Guardrail·Solar — Global B2B Stylesheet
   Design: Modern Industrial / Trust-Focused
   ============================================ */

:root {
  --navy:       #0a1628;
  --navy-mid:   #0f2040;
  --blue:       #1a56db;
  --blue-light: #3b82f6;
  --accent:     #f59e0b;
  --accent-dark:#d97706;
  --steel:      #64748b;
  --steel-light:#94a3b8;
  --bg-light:   #f8fafc;
  --bg-white:   #ffffff;
  --text-dark:  #0f172a;
  --text-body:  #334155;
  --text-muted: #64748b;
  --border:     #e2e8f0;

  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow:    0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.15);
  --transition: .2s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text-body);
  background: var(--bg-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== TYPOGRAPHY ===== */
h1,h2,h3,h4 { color: var(--text-dark); line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.2rem; }
p  { color: var(--text-body); }
a  { text-decoration: none; color: inherit; }

/* ===== LAYOUT ===== */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.center { text-align: center; }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .7rem 1.6rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-lg { padding: .9rem 2rem; font-size: 1rem; }
.btn-primary {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
.btn-primary:hover { background: #1648c0; border-color: #1648c0; transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-secondary {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-secondary:hover { background: var(--blue); color: #fff; }
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn-outline-white {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-white:hover { background: var(--navy); color: #fff; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,22,40,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: all .3s ease;
}
.navbar.scrolled {
  background: rgba(10,22,40,.98);
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.nav-inner {
  display: flex;
  align-items: center;
  height: 70px;
  gap: 2rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: #fff;
}
.logo-mark {
  width: 38px; height: 38px;
  background: var(--blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .9rem;
  color: #fff;
  flex-shrink: 0;
}
.logo-text {
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  letter-spacing: -.02em;
}
.logo-text .accent { color: var(--accent); margin: 0 1px; }
.nav-links {
  display: flex;
  gap: 2rem;
  margin-left: auto;
}
.nav-links a {
  color: rgba(255,255,255,.75);
  font-size: .9rem;
  font-weight: 500;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta { margin-left: 1rem; font-size: .88rem; padding: .55rem 1.2rem; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1rem 1.5rem 1.5rem;
}
.mobile-menu a {
  color: rgba(255,255,255,.8);
  padding: .7rem 0;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.mobile-menu a.btn { margin-top: 1rem; text-align: center; justify-content: center; }
.mobile-menu.open { display: flex; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 7rem 0 5rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(26,86,219,.25) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(245,158,11,.08) 0%, transparent 50%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}
.hero-badge {
  display: inline-block;
  background: rgba(26,86,219,.2);
  border: 1px solid rgba(26,86,219,.4);
  color: var(--blue-light);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}
.hero-title {
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.gradient-text {
  background: linear-gradient(135deg, var(--blue-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  color: rgba(255,255,255,.7);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 2.5rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  width: fit-content;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1.5rem;
}
.stat-num {
  font-size: 1.7rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.stat-num small {
  font-size: .7rem;
  font-weight: 500;
  color: var(--accent);
  margin-left: 2px;
}
.stat-label {
  font-size: .72rem;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-top: .3rem;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.15);
  flex-shrink: 0;
}

/* ===== SECTIONS ===== */
.section-light  { padding: 6rem 0; background: var(--bg-light); }
.section-dark   { padding: 6rem 0; background: var(--navy-mid); }
.section-accent { padding: 6rem 0; background: var(--navy); }
.cta-section    { padding: 6rem 0; background: linear-gradient(135deg, var(--blue) 0%, #1a3a8f 100%); color: #fff; }
.cta-section h2, .cta-section p { color: #fff; }
.cta-section p  { max-width: 560px; margin: 1rem auto 2rem; opacity: .85; font-size: 1.05rem; }

.section-header { margin-bottom: 3.5rem; }
.section-header.center { text-align: center; }
.section-header h2 { margin: .5rem 0 1rem; }
.section-desc { max-width: 560px; margin: 0 auto; color: var(--steel); font-size: 1.05rem; }

.section-dark .section-desc  { color: rgba(255,255,255,.55); }
.section-dark h2 { color: #fff; }
.section-dark .section-tag.light { border-color: rgba(59,130,246,.4); color: var(--blue-light); background: rgba(59,130,246,.1); }

.section-tag {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(26,86,219,.08);
  border: 1px solid rgba(26,86,219,.2);
  padding: .3rem .85rem;
  border-radius: 50px;
  margin-bottom: .5rem;
}
.section-tag.light { color: var(--accent); background: rgba(245,158,11,.1); border-color: rgba(245,158,11,.3); }

/* ===== FEATURE CARDS (Vision) ===== */
.col-text p { color: var(--text-body); line-height: 1.8; margin-bottom: 1rem; }
.section-dark .col-text p { color: rgba(255,255,255,.7); }
.section-accent .col-text h2 { color: #fff; }
.section-accent .col-text p { color: rgba(255,255,255,.7); }
.feature-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.fcard {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem;
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.fcard:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.fcard-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.fcard strong { font-size: .95rem; color: var(--text-dark); display: block; margin-bottom: .2rem; }
.fcard p { font-size: .82rem; color: var(--text-muted); margin: 0; line-height: 1.5; }

/* ===== WHO WE SERVE ===== */
.serve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.serve-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
}
.serve-card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(59,130,246,.4);
  transform: translateY(-3px);
}
.serve-icon { font-size: 2rem; margin-bottom: 1rem; }
.serve-card h3 { color: #fff; font-size: 1.05rem; margin-bottom: .75rem; }
.serve-card p  { color: rgba(255,255,255,.6); font-size: .9rem; line-height: 1.7; }

/* ===== ADVANTAGES PREVIEW ===== */
.adv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.adv-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.adv-card:hover { border-color: var(--blue); transform: translateY(-3px); box-shadow: var(--shadow); }
.adv-num {
  font-size: .75rem;
  font-weight: 800;
  color: var(--blue-light);
  letter-spacing: .08em;
  margin-bottom: .75rem;
  opacity: .6;
}
.adv-card h3 { font-size: 1rem; margin-bottom: .6rem; }
.adv-card p  { font-size: .88rem; color: var(--text-muted); line-height: 1.7; }

/* ===== PROJECT REFERENCE ===== */
.project-placeholder {
  background: rgba(255,255,255,.05);
  border: 2px dashed rgba(255,255,255,.2);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  text-align: center;
  color: rgba(255,255,255,.7);
}
.project-icon { font-size: 3rem; margin-bottom: 1rem; }
.project-name { font-size: 1.1rem; font-weight: 600; color: #fff; margin-bottom: .5rem; }
.project-note { font-size: .8rem; color: rgba(255,255,255,.4); margin: 0; }
.check-list { list-style: none; margin-top: 1rem; }
.check-list li {
  padding: .4rem 0;
  color: rgba(255,255,255,.75);
  font-size: .9rem;
}
.check-list li::before { content: '✓ '; color: var(--accent); font-weight: 700; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: var(--navy);
  padding: 9rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 70% 50%, rgba(26,86,219,.2) 0%, transparent 60%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero-tag { margin-bottom: .75rem; }
.page-hero h1 { color: #fff; margin-bottom: 1rem; }
.page-hero p  { color: rgba(255,255,255,.65); max-width: 600px; font-size: 1.05rem; line-height: 1.7; }

/* ===== ADVANTAGES PAGE ===== */
.adv-section { padding: 5rem 0; }
.adv-section:nth-child(even) { background: var(--bg-light); }
.adv-block {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}
.adv-label {
  position: sticky;
  top: 100px;
}
.adv-label .num {
  font-size: 4rem;
  font-weight: 900;
  color: var(--blue);
  opacity: .15;
  line-height: 1;
  margin-bottom: .5rem;
}
.adv-label h2 { font-size: 1.5rem; margin-bottom: 1rem; }
.adv-content h3 { font-size: 1.05rem; margin: 1.5rem 0 .5rem; color: var(--blue); }
.adv-content h3:first-child { margin-top: 0; }
.adv-content p  { font-size: .95rem; line-height: 1.8; margin-bottom: .5rem; }
.data-badge {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  padding: .3rem .8rem;
  border-radius: var(--radius-sm);
  font-size: .8rem;
  font-weight: 700;
  margin: .25rem .25rem .25rem 0;
}
.data-badge.accent { background: var(--accent); color: var(--navy); }
.data-badge.green  { background: #16a34a; }

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
  margin: 1.5rem 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.compare-table th {
  background: var(--navy);
  color: #fff;
  padding: .8rem 1rem;
  text-align: left;
  font-weight: 600;
}
.compare-table th.highlight { background: var(--blue); }
.compare-table td {
  padding: .75rem 1rem;
  border-bottom: 1px solid var(--border);
  background: #fff;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table td.highlight { background: rgba(26,86,219,.05); font-weight: 600; color: var(--blue); }
.compare-table td.good  { color: #16a34a; font-weight: 600; }
.compare-table td.bad   { color: #dc2626; }

/* ===== PRODUCTS PAGE ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.product-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--blue-light); }
.product-img {
  height: 180px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}
.product-body { padding: 1.5rem; }
.product-tag {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--blue);
  margin-bottom: .5rem;
}
.product-body h3 { margin-bottom: .6rem; font-size: 1.05rem; }
.product-body p  { font-size: .87rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1rem; }
.spec-list { list-style: none; margin-bottom: 1.2rem; }
.spec-list li {
  font-size: .82rem;
  color: var(--text-body);
  padding: .25rem 0;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.spec-list li::before { content: '—'; color: var(--blue-light); font-weight: 700; }

/* ===== CONTACT PAGE ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  padding: 5rem 0;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p  { color: var(--text-muted); line-height: 1.8; margin-bottom: 2rem; }
.contact-methods { display: flex; flex-direction: column; gap: 1rem; }
.cmethod {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem;
  background: var(--bg-light);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.cmethod:hover { border-color: var(--blue); }
.cmethod-icon { font-size: 1.4rem; flex-shrink: 0; }
.cmethod strong { display: block; font-size: .88rem; color: var(--text-dark); margin-bottom: .2rem; }
.cmethod span { font-size: .83rem; color: var(--text-muted); }
.cmethod a { font-size: .83rem; color: var(--blue); }

.contact-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.contact-form h3 { margin-bottom: 1.5rem; font-size: 1.3rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: .4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .7rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: .9rem;
  color: var(--text-dark);
  background: var(--bg-white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,86,219,.1);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit { width: 100%; padding: .9rem; font-size: 1rem; justify-content: center; }
.form-note { font-size: .78rem; color: var(--text-muted); text-align: center; margin-top: .75rem; }

/* ===== FOOTER ===== */
.footer { background: var(--navy); color: rgba(255,255,255,.7); }
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 4rem 0 3rem;
  gap: 3rem;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer-brand strong { display: block; color: #fff; margin-bottom: .2rem; }
.footer-brand p { font-size: .82rem; margin: 0; }
.footer-links { display: flex; gap: 3rem; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: .6rem; }
.footer-col strong { color: #fff; font-size: .85rem; margin-bottom: .2rem; }
.footer-col a { font-size: .83rem; color: rgba(255,255,255,.55); transition: color var(--transition); }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.5rem 0;
  text-align: center;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.4); margin: 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .adv-block { grid-template-columns: 1fr; }
  .adv-label { position: static; }
  .adv-label .num { font-size: 2.5rem; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .two-col, .two-col.reverse { grid-template-columns: 1fr; direction: ltr; gap: 2.5rem; }
  .serve-grid { grid-template-columns: 1fr; }
  .adv-grid   { grid-template-columns: 1fr; }
  .feature-cards { grid-template-columns: 1fr; }
  .hero-stats { gap: 0; padding: 1rem; }
  .stat { padding: 0 .8rem; }
  .stat-num { font-size: 1.3rem; }
  .products-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 0; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 2rem; }
  .footer-links { gap: 1.5rem; }
  .section-light, .section-dark, .section-accent, .cta-section { padding: 4rem 0; }
  .hero { padding: 6rem 0 4rem; }
  .page-hero { padding: 8rem 0 3rem; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn-lg { width: 100%; justify-content: center; }
  .hero-stats { flex-direction: column; align-items: flex-start; }
  .stat-divider { width: 100%; height: 1px; }
  .stat { align-items: flex-start; padding: .5rem 0; }
}

/* ===== PRODUCT VARIANT BUTTONS ===== */
.product-variant-btn {
  display: inline-block;
  padding: .45rem 1.1rem;
  background: #0a1628;
  color: #fff;
  font-size: .82rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  border: 2px solid transparent;
}
.product-variant-btn:hover {
  background: #1a56db;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26,86,219,.35);
}
.product-variant-btn:active {
  transform: translateY(0);
}

/* ===== IMAGE SLOTS ===== */
.img-slot {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: #e2e8f0;
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.img-slot span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10,22,40,.65);
  color: #fff;
  font-size: .75rem;
  padding: .4rem .75rem;
  text-align: center;
}
/* When image fails to load, show placeholder */
.img-slot.img-missing {
  background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
  flex-direction: column;
  gap: .5rem;
}
.img-slot.img-missing::before {
  content: '📷';
  font-size: 2.5rem;
  display: block;
}
.img-slot.img-missing::after {
  content: attr(data-label);
  font-size: .75rem;
  color: #94a3b8;
  text-align: center;
  padding: 0 1rem;
}
.img-slot.img-missing img { display: none; }
.img-slot.img-missing span {
  position: static;
  background: transparent;
  color: #94a3b8;
  font-size: .75rem;
}

/* Logo image in navbar */
.logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

