/* ==========================================================================
   OMNICORP GLOBAL SOLUTIONS — UI/UX PRO MAX DESIGN SYSTEM
   Google Font: Poppins | WCAG 2.2 AAA Accessibility | 1:1 Aspect Ratio
   ========================================================================== */

/* 1. SEMANTIC TOKENS & DUAL-THEME ENGINE */
:root, [data-theme="dark"] {
  --bg-canvas: #060911;
  --bg-surface: #0c1220;
  --bg-card: #101728;
  --bg-card-hover: #162035;
  --bg-input: #131c30;
  
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-active: #0ea5e9;
  
  --accent-blue: #0284c7;
  --accent-blue-hover: #0369a1;
  --accent-orange: #ea580c;
  --accent-green: #16a34a;
  --accent-green-hover: #15803d;
  --accent-cyan: #38bdf8;
  
  --header-bg: rgba(6, 9, 17, 0.90);
  --footer-bg: #03050a;
  --bottom-bar-bg: rgba(16, 23, 40, 0.94);
  
  --shadow-card: 0 4px 20px -2px rgba(0, 0, 0, 0.45), 0 0 0 1px var(--border-subtle);
  --shadow-card-hover: 0 10px 28px -4px rgba(2, 132, 199, 0.25), 0 0 0 1px var(--accent-blue);
  --shadow-glow: 0 0 20px rgba(14, 165, 233, 0.2);
  --shadow-sheet: -10px 0 40px rgba(0, 0, 0, 0.6);
}

[data-theme="light"] {
  --bg-canvas: #f8fafc;
  --bg-surface: #f1f5f9;
  --bg-card: #ffffff;
  --bg-card-hover: #f8fafc;
  --bg-input: #ffffff;
  
  --text-primary: #090e1a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  
  --border-subtle: rgba(0, 0, 0, 0.08);
  --border-active: #0284c7;
  
  --accent-blue: #0284c7;
  --accent-blue-hover: #0369a1;
  --accent-orange: #ea580c;
  --accent-green: #16a34a;
  --accent-green-hover: #15803d;
  --accent-cyan: #0284c7;
  
  --header-bg: rgba(255, 255, 255, 0.92);
  --footer-bg: #f1f5f9;
  --bottom-bar-bg: rgba(255, 255, 255, 0.96);
  
  --shadow-card: 0 4px 18px rgba(0, 0, 0, 0.06), 0 0 0 1px var(--border-subtle);
  --shadow-card-hover: 0 10px 24px rgba(2, 132, 199, 0.14), 0 0 0 1px var(--accent-blue);
  --shadow-glow: 0 0 18px rgba(2, 132, 199, 0.12);
  --shadow-sheet: -10px 0 40px rgba(0, 0, 0, 0.15);
}

:root {
  --font-family: 'Poppins', sans-serif;
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-pill: 9999px;
  --spring-snappy: cubic-bezier(0.16, 1, 0.3, 1);
}

/* 2. BASE RESET & ACCESSIBILITY */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  background-color: var(--bg-canvas);
  font-family: var(--font-family);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body.promax-app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-bottom: 95px;
  background-color: var(--bg-canvas);
}

.site-container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px;
}
@media (max-width: 640px) { .site-container { padding: 0 14px; } }

/* 3. TOP INDUSTRIAL DISPATCH BAR */
.promax-top-bar {
  background-color: rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid var(--border-subtle);
  font-size: 11.5px;
  padding: 6px 0;
  color: var(--text-secondary);
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.top-dispatch-info {
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 500;
}
.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--accent-green);
  box-shadow: 0 0 8px var(--accent-green);
}
.top-bar-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.top-link-wa {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--accent-green);
  text-decoration: none;
  font-weight: 600;
}
.top-legal-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-family);
  font-size: 11px;
  cursor: pointer;
  padding: 2px 4px;
}
.top-legal-btn:hover { color: var(--accent-cyan); }
.sep-dot { color: var(--border-subtle); }

@media (max-width: 768px) {
  .top-bar-links { display: none; }
}

/* 4. STICKY HEADER */
.promax-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: var(--header-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  height: 68px;
  display: flex;
  align-items: center;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
}
.brand-group {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  object-fit: contain;
}
.brand-labels { display: flex; flex-direction: column; }
.brand-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.brand-subtitle {
  font-size: 10px;
  font-weight: 700;
  color: var(--accent-cyan);
  letter-spacing: 0.04em;
}

.search-wrap {
  flex: 1;
  max-width: 520px;
  position: relative;
  display: flex;
  align-items: center;
}
.search-icon {
  position: absolute;
  left: 14px;
  color: var(--text-muted);
  pointer-events: none;
}
.search-wrap input {
  width: 100%;
  height: 44px;
  background: var(--bg-input);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  padding: 0 76px 0 42px;
  font-family: var(--font-family);
  font-size: 13.5px;
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.18s var(--spring-snappy), box-shadow 0.18s var(--spring-snappy);
}
.search-wrap input:focus {
  border-color: var(--border-active);
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.18);
}
.search-badge {
  position: absolute;
  right: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.btn-icon-switch {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-pill);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.15s;
}
.btn-icon-switch:active { transform: scale(0.95); }

.btn-quote-cart {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 42px;
  padding: 0 16px;
  border-radius: var(--radius-pill);
  background: var(--accent-blue);
  color: #ffffff;
  border: none;
  font-family: var(--font-family);
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow-glow);
  transition: transform 0.15s var(--spring-snappy), background-color 0.15s;
}
.btn-quote-cart:hover { background-color: var(--accent-blue-hover); }
.btn-quote-cart:active { transform: scale(0.96); }
.cart-counter {
  background: #ffffff;
  color: var(--accent-blue);
  font-size: 11.5px;
  font-weight: 800;
  border-radius: var(--radius-pill);
  padding: 1px 7px;
  min-width: 20px;
  text-align: center;
}

@media (max-width: 640px) {
  .brand-labels { display: none; }
  .search-wrap { display: none; }
}

/* 5. HERO SECTION */
.promax-hero {
  padding: 28px 0 16px;
  text-align: center;
}
.hero-container { max-width: 820px; margin: 0 auto; }
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(2, 132, 199, 0.1);
  border: 1px solid rgba(2, 132, 199, 0.25);
  border-radius: var(--radius-pill);
  padding: 4px 14px;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-cyan);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}
.kicker-glow {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-cyan);
  box-shadow: 0 0 6px var(--accent-cyan);
}
.hero-heading {
  font-size: clamp(22px, 4.2vw, 36px);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.18;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.hero-subtext {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
  text-wrap: pretty;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 22px;
}
.btn-cta-pdf, .btn-cta-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  height: 44px;
  padding: 0 18px;
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s var(--spring-snappy), background-color 0.15s;
}
.btn-cta-pdf:active, .btn-cta-wa:active { transform: scale(0.97); }

.btn-cta-pdf {
  background: var(--bg-card);
  color: var(--accent-cyan);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-card);
}
.btn-cta-pdf:hover { border-color: var(--accent-blue); transform: translateY(-1px); }

.btn-cta-wa {
  background: var(--accent-green);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 16px rgba(22, 163, 74, 0.3);
}
.btn-cta-wa:hover { background: var(--accent-green-hover); transform: translateY(-1px); }

.hero-highlights-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}
@media (max-width: 560px) {
  .hero-highlights-row { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
.highlight-item { display: flex; flex-direction: column; }
.highlight-val { font-size: 15px; font-weight: 800; color: var(--text-primary); }
.highlight-lbl { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

/* 6. STICKY CATEGORIES */
.promax-category-nav {
  position: sticky;
  top: 68px;
  z-index: 40;
  background-color: var(--header-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 10px 0;
  border-bottom: 1px solid var(--border-subtle);
}
.category-scroll-track {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.category-scroll-track::-webkit-scrollbar { display: none; }

.cat-chip-btn {
  flex-shrink: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.18s var(--spring-snappy);
}
.cat-chip-btn:hover { color: var(--text-primary); border-color: var(--accent-blue); }
.cat-chip-btn.active {
  background: var(--accent-blue);
  color: #ffffff;
  border-color: var(--accent-blue);
  box-shadow: var(--shadow-glow);
}

/* 7. PRODUCT FEED & 1:1 SQUARE CARDS */
.promax-feed-section { padding: 22px 0 44px; }
.feed-header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.feed-title { font-size: 18px; font-weight: 800; color: var(--text-primary); }
.feed-subtitle { font-size: 12.5px; color: var(--text-muted); font-weight: 500; }

.promax-products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 600px) {
  .promax-products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (min-width: 960px) {
  .promax-products-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

.product-item-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 14px;
  display: flex;
  gap: 14px;
  align-items: center;
  box-shadow: var(--shadow-card);
  transition: all 0.18s var(--spring-snappy);
  position: relative;
}
@media (min-width: 600px) {
  .product-item-card { flex-direction: column; align-items: flex-start; padding: 16px; }
}
.product-item-card:hover {
  border-color: var(--accent-blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover);
}

/* STRICT 1:1 SQUARE THUMBNAIL CONTAINER WITH CONTAIN FIT */
.item-thumb-box {
  width: 94px;
  height: 94px;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-sm);
  background: #03060f;
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  flex-shrink: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 600px) {
  .item-thumb-box { width: 100%; height: auto; aspect-ratio: 1 / 1; }
}
.item-thumb-box img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 6px;
  transition: transform 0.22s var(--spring-snappy);
}
.product-item-card:hover .item-thumb-box img { transform: scale(1.06); }

.item-info-box {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
  width: 100%;
}
@media (min-width: 600px) {
  .item-info-box { margin-top: 10px; }
}

.item-cat-kicker {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--accent-cyan);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.item-name-heading {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.25;
  cursor: pointer;
}
.item-name-heading:hover { color: var(--accent-cyan); }
.item-specs-line {
  font-size: 12px;
  color: var(--text-secondary);
  margin: 3px 0 6px;
}

.item-actions-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 6px;
  width: 100%;
}
.btn-item-add {
  flex: 1;
  height: 38px;
  background: var(--accent-blue);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s;
}
.btn-item-add:hover { background: var(--accent-blue-hover); }
.btn-item-add.in-cart { background: var(--accent-green); }

.btn-item-inspect {
  height: 38px;
  padding: 0 12px;
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
}
.btn-item-inspect:hover { color: var(--text-primary); border-color: var(--accent-blue); }

/* 8. FLOATING CHECKOUT BAR */
.promax-floating-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: var(--bottom-bar-bg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid var(--accent-orange);
  padding: 12px 0;
  transform: translateY(120%);
  transition: transform 0.24s var(--spring-snappy);
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.4);
}
.promax-floating-bar.active { transform: translateY(0); }

.floating-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.floating-summary {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.floating-badge-num {
  background: var(--accent-orange);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  border-radius: var(--radius-pill);
  padding: 2px 8px;
}
.floating-text-group { display: flex; flex-direction: column; }
.floating-main-txt { font-size: 13.5px; font-weight: 700; color: var(--text-primary); }
.floating-sub-txt { font-size: 11px; color: var(--accent-cyan); font-weight: 500; }

.btn-floating-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-green);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 10px 18px;
  font-family: var(--font-family);
  font-size: 13.5px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.15s;
}
.btn-floating-cta:active { transform: scale(0.96); }

/* 9. ACCESSIBLE SLIDE-OVER DRAWER */
.promax-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  display: flex;
  justify-content: flex-end;
}
.promax-drawer-backdrop.active { opacity: 1; pointer-events: auto; }

.promax-drawer-panel {
  width: 100%;
  max-width: 460px;
  height: 100%;
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.24s var(--spring-snappy);
  box-shadow: var(--shadow-sheet);
}
.promax-drawer-backdrop.active .promax-drawer-panel { transform: translateX(0); }

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border-subtle);
}
.drawer-brand-box { display: flex; align-items: center; gap: 10px; }
.drawer-logo { border-radius: var(--radius-xs); object-fit: contain; }
.drawer-title { font-size: 16px; font-weight: 800; color: var(--text-primary); }
.drawer-sub { font-size: 11.5px; color: var(--text-muted); }
.btn-drawer-close { background: none; border: none; color: var(--text-muted); font-size: 24px; cursor: pointer; }

.drawer-form-meta {
  padding: 12px 20px;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.drawer-input {
  width: 100%;
  height: 40px;
  background: var(--bg-input);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xs);
  padding: 0 12px;
  font-family: var(--font-family);
  font-size: 12.5px;
  color: var(--text-primary);
  outline: none;
}
.drawer-input:focus { border-color: var(--accent-blue); }

.drawer-scroll-body { flex: 1; overflow-y: auto; padding: 16px 20px; }
.drawer-empty-box { text-align: center; color: var(--text-muted); padding: 50px 10px; font-size: 13.5px; }

.cart-item-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 12px;
  margin-bottom: 10px;
}
.cart-item-title { font-size: 13.5px; font-weight: 700; color: var(--text-primary); }
.cart-item-meta { font-size: 11px; color: var(--text-secondary); }
.cart-stepper-ctrl { display: flex; align-items: center; gap: 6px; }
.btn-step {
  width: 26px;
  height: 26px;
  border-radius: var(--radius-xs);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  font-weight: 800;
  cursor: pointer;
}
.step-val { font-size: 13px; font-weight: 800; min-width: 20px; text-align: center; }
.btn-item-delete { background: none; border: none; color: #ef4444; font-size: 16px; cursor: pointer; padding: 4px; }

.drawer-footer {
  padding: 18px 20px;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-surface);
}
.drawer-note { font-size: 11.5px; color: var(--text-muted); line-height: 1.4; margin-bottom: 12px; }
.btn-drawer-submit {
  width: 100%;
  height: 46px;
  background: var(--accent-green);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

/* 10. MODALS (DETAIL & COMPLIANCE) */
.promax-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 110;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.promax-modal-backdrop.active { opacity: 1; pointer-events: auto; }

.promax-modal-card {
  width: 100%;
  max-width: 500px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-card);
}
.modal-legal-width { max-width: 620px; }
.btn-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 24px;
  cursor: pointer;
}

.legal-modal-heading { font-size: 18px; font-weight: 800; color: var(--text-primary); margin-bottom: 14px; }
.legal-modal-content { font-size: 13.5px; color: var(--text-secondary); line-height: 1.65; }
.legal-modal-content h4 { color: var(--text-primary); font-size: 15px; margin: 14px 0 6px; }
.legal-modal-content p { margin-bottom: 8px; }
.legal-modal-content ul { margin-left: 20px; margin-bottom: 8px; }
.legal-modal-content strong { color: var(--text-primary); }

/* 11. COMPLETE COMPLIANCE FOOTER */
.promax-footer {
  background-color: var(--footer-bg);
  border-top: 1px solid var(--border-subtle);
  padding: 44px 0 24px;
  font-size: 13px;
  color: var(--text-muted);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; }
}

.footer-brand-lockup { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.footer-logo { border-radius: var(--radius-xs); object-fit: contain; }
.footer-company-name { font-size: 14.5px; font-weight: 800; color: var(--text-primary); }
.footer-company-sub { font-size: 11px; color: var(--accent-cyan); }
.footer-summary { font-size: 12.5px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 12px; }
.footer-legal-badge {
  display: flex;
  flex-direction: column;
  gap: 3px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xs);
  padding: 8px 12px;
  font-size: 11.5px;
  color: var(--text-secondary);
}
.footer-legal-badge strong { color: var(--text-primary); }

.footer-col-title {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.footer-nav-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-action-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 12.5px;
  font-family: var(--font-family);
  text-align: left;
  cursor: pointer;
  padding: 0;
  transition: color 0.15s;
}
.footer-action-btn:hover { color: var(--accent-cyan); }
.footer-sic-link { color: var(--accent-cyan); text-decoration: none; font-size: 12.5px; }

.footer-contact-block { display: flex; flex-direction: column; gap: 6px; font-size: 12.5px; color: var(--text-secondary); }
.footer-contact-block strong { color: var(--text-primary); }
.footer-contact-block a { color: var(--accent-cyan); text-decoration: none; }
.footer-pdf-action { color: var(--accent-orange) !important; font-weight: 700; margin-top: 4px; display: inline-block; }

.footer-bottom-bar {
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
  font-size: 11.5px;
  color: var(--text-muted);
  text-align: center;
}
