/* SSD ENGINEERS - Professional White-First Corporate Design System */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Outfit:wght@500;600;700;800&display=swap');

:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #f1f5f9;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --primary-blue: #0284c7;
  --primary-teal: #006061;
  --brand-red: #c5221f;
  --brand-navy: #091e3a;
  --border-color: #e2e8f0;
  --border-light: #cbd5e1;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 16px 36px rgba(2, 132, 199, 0.1);
  --transition: all 0.25s ease-in-out;
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--brand-navy);
  margin-top: 0;
  margin-bottom: 16px;
  line-height: 1.25;
}

p {
  margin-top: 0;
  margin-bottom: 16px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

.container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.header-container {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Safran-Inspired Top Corporate Bar */
/* Safran-Inspired Light Corporate Top Bar (Compact & Sleek) */
.top-bar {
  background-color: #f8fafc;
  color: #0f172a;
  font-size: 0.88rem;
  padding-top: 4px;
  padding-bottom: 4px;
  margin-bottom: 0;
  border-bottom: 1px solid #e2e8f0;
  letter-spacing: 0.2px;
  white-space: nowrap;
  overflow: hidden;
}
.top-bar .header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.top-bar-info {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.top-bar-info span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #334155;
  font-weight: 600;
  white-space: nowrap;
  font-size: 0.88rem;
}
.top-bar-info i {
  color: #0284c7;
  font-size: 0.95rem;
}
.divider-dot {
  color: #cbd5e1 !important;
}
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
  white-space: nowrap;
  flex-shrink: 0;
}
.partner-badge {
  background: rgba(2, 132, 199, 0.08);
  color: #0284c7;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid rgba(2, 132, 199, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

/* Safran-Inspired Deep Dark Main Corporate Navigation Header (W3C Standard & Professional Proportions) */
.header-nav {
  background-color: #091e3a;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 10px;
  padding-bottom: 10px;
  margin-bottom: 0;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-logo-badge {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #ffffff;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.brand-logo:hover .brand-logo-badge {
  transform: scale(1.04);
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.3);
}
.brand-logo-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transform: scale(1.24);
}

.brand-text {
  display: flex;
  flex-direction: column;
}
.brand-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff !important;
  letter-spacing: 0.5px;
  line-height: 1.1;
  font-family: 'Outfit', sans-serif;
}
.brand-subtitle {
  font-size: 0.75rem;
  color: #38bdf8 !important;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 700;
  margin-top: 2px;
}

.brand-divider {
  width: 1px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  margin-left: 20px;
  margin-right: 20px;
  flex-shrink: 0;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}
.nav-links li {
  white-space: nowrap;
  display: flex;
  align-items: center;
}
.nav-links a {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: capitalize;
  letter-spacing: 0.3px;
  padding: 8px 4px;
  position: relative;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  vertical-align: middle;
  line-height: 1.2;
  transition: color 0.2s ease;
}
.nav-links a:hover,
.nav-links a.active {
  color: #38bdf8;
  font-weight: 700;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 0;
  height: 3px;
  background-color: #38bdf8;
  border-radius: 3px;
  transition: width 0.25s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta-wrapper {
  flex-shrink: 0;
  margin-left: 16px;
  display: flex;
  align-items: center;
}
.btn-catalog-nav-dark {
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.3px;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-right: 8px;
  transition: var(--transition);
}
.btn-catalog-nav-dark:hover {
  border-color: #38bdf8;
  color: #38bdf8 !important;
  background: rgba(255, 255, 255, 0.15);
}
.btn-cta-nav {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.4px;
  padding: 9px 20px;
  border-radius: 6px;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: var(--transition);
}
.btn-cta-nav:hover {
  background: linear-gradient(135deg, #0369a1 0%, #0284c7 100%);
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.5);
  transform: translateY(-1px);
}

/* Top Bar Partner Brands Dropdown (Light Theme with 2.5s Stay Open Delay) */
.top-dropdown {
  position: relative;
  display: inline-block;
  margin-right: 8px;
}
.top-dropdown-btn {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  color: #0f172a;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 5px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.2s ease;
}
.top-dropdown-btn:hover {
  background: #f1f5f9;
  border-color: #0284c7;
  color: #0284c7;
}
.top-dropdown-content {
  display: block;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 100%;
  background: #ffffff;
  min-width: 280px;
  box-shadow: 0 10px 30px rgba(9, 30, 58, 0.15);
  border-radius: 6px;
  border: 1px solid #e2e8f0;
  z-index: 1005;
  padding: 8px 0;
  transform: translateY(6px);
  /* 2.5 Second Hold Time on Unhover */
  transition: opacity 0.3s ease, visibility 0s linear 2.5s, transform 0.3s ease;
}
.top-dropdown:hover .top-dropdown-content,
.top-dropdown.dropdown-active .top-dropdown-content,
.top-dropdown-content:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  /* Instant Open on Hover */
  transition: opacity 0.2s ease, visibility 0s linear 0s, transform 0.2s ease;
}
.top-dropdown-content a {
  color: #334155;
  padding: 10px 18px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
  font-weight: 600;
  transition: all 0.2s ease;
}
.top-dropdown-content a:hover {
  background: #f0f9ff;
  color: #0284c7;
  padding-left: 24px;
}

/* Safran-Inspired Bright White Mega-Menu Panels (Reversed Theme with 2.5s Stay Open Delay) */
.has-megamenu {
  position: static;
}
.nav-arrow {
  font-size: 1.25rem;
  margin-left: 6px;
  transition: transform 0.25s ease;
  vertical-align: middle;
}
.has-megamenu:hover .nav-arrow,
.has-megamenu.megamenu-active .nav-arrow {
  transform: rotate(180deg);
}

.megamenu-panel {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #ffffff;
  color: #0f172a;
  box-shadow: 0 20px 50px rgba(9, 30, 58, 0.22);
  border-top: 4px solid #0284c7;
  border-bottom: 1px solid #e2e8f0;
  padding: 40px 0;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  /* 2.5 Second Hold Time on Unhover */
  transition: opacity 0.35s ease, visibility 0s linear 2.5s, transform 0.35s ease;
}

.has-megamenu:hover .megamenu-panel,
.has-megamenu.megamenu-active .megamenu-panel,
.megamenu-panel:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  /* Instant Open on Hover */
  transition: opacity 0.25s ease, visibility 0s linear 0s, transform 0.25s ease;
}

.megamenu-grid {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.megamenu-col {
  display: flex;
  flex-direction: column;
}

.megamenu-title {
  color: #091e3a !important;
  font-size: 1.35rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f1f5f9;
  display: flex;
  align-items: center;
  gap: 10px;
}
.megamenu-title i {
  color: #0284c7;
  font-size: 1.35rem;
}

.megamenu-col a {
  color: #334155;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  padding: 8px 10px;
  border-radius: 6px;
  transition: all 0.2s ease;
  position: relative;
}

.megamenu-col a:hover {
  background: #f0f9ff;
  color: #0284c7;
  padding-left: 16px;
  font-weight: 700;
}
.megamenu-col a::after {
  display: none;
}

.megamenu-badge {
  font-size: 1.05rem;
  color: #047857;
  background: rgba(16, 185, 129, 0.1);
  padding: 6px 14px;
  border-radius: 6px;
  margin-top: 12px;
  display: inline-block;
  font-weight: 700;
  border: 1px solid rgba(16, 185, 129, 0.25);
  width: fit-content;
}

/* Safran Image Card Layout inside Mega-Menu */
.megamenu-image-card {
  min-height: 250px;
  border-radius: 10px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 8px 24px rgba(9, 30, 58, 0.15);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.image-card-overlay {
  background: linear-gradient(to top, rgba(9, 30, 58, 0.95) 0%, rgba(9, 30, 58, 0.65) 60%, rgba(9, 30, 58, 0.15) 100%);
  padding: 20px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: flex-end;
}

.image-card-badge {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  background: #0284c7;
  color: #ffffff;
  padding: 3px 8px;
  border-radius: 4px;
  width: fit-content;
  margin-bottom: 8px;
}

.image-card-overlay h4 {
  color: #ffffff !important;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.25;
}

.image-card-overlay p {
  color: #cbd5e1;
  font-size: 0.82rem;
  line-height: 1.45;
  margin-bottom: 12px;
}

.image-card-btn {
  background: #0284c7;
  color: #ffffff !important;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 14px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
}
.image-card-btn:hover {
  background: #38bdf8;
  color: #091e3a !important;
  transform: translateY(-1px);
}

/* Action Buttons */
.btn-cta {
  background-color: var(--primary-blue);
  color: #ffffff !important;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  box-shadow: 0 3px 10px rgba(2, 132, 199, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  margin-top: 4px;
  margin-bottom: 4px;
}
.btn-cta:hover {
  background-color: #02699e;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(2, 132, 199, 0.35);
}
.btn-outline {
  border: 1px solid var(--border-light);
  color: var(--brand-navy);
  background-color: #ffffff;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  margin-bottom: 4px;
}
.btn-outline:hover {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
  background-color: var(--bg-secondary);
}

.btn-outline-white {
  border: 2px solid #ffffff;
  color: #ffffff !important;
  background-color: transparent;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  margin-bottom: 4px;
  transition: var(--transition);
}
.btn-outline-white:hover {
  background-color: #ffffff;
  color: var(--brand-navy) !important;
  border-color: #ffffff;
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--brand-navy);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Clean White Hero Banner */
.hero-section {
  background-color: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
  padding-top: 70px;
  padding-bottom: 70px;
  margin-bottom: 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #e0f2fe;
  color: var(--primary-blue);
  border: 1px solid #bae6fd;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.hero-title {
  font-size: 3rem;
  color: var(--brand-navy);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.hero-title span {
  color: var(--primary-blue);
}
.hero-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

/* Sections & Spacing Rules (Never 0 Margins) */
.section-padding {
  padding-top: 75px;
  padding-bottom: 75px;
  margin-top: 0;
  margin-bottom: 0;
}
.section-header {
  text-align: center;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 48px;
}
.section-tag {
  color: var(--primary-teal);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  margin-bottom: 10px;
  display: block;
}
.section-title {
  font-size: 2.2rem;
  margin-bottom: 16px;
}
.section-desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 0;
}

/* Standalone Small Brand Logo Cards */
.brand-logo-card {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.brand-logo-card:hover {
  border-color: var(--primary-blue);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.brand-logo-img-wrapper {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.brand-logo-img-wrapper img {
  max-height: 44px;
  max-width: 140px;
  object-fit: contain;
  filter: contrast(105%);
}

/* Clean Cards & Component Styling */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-bottom: 24px;
}
.card-item {
  background-color: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
}
.card-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-blue);
}
.card-icon {
  width: 52px;
  height: 52px;
  background-color: var(--bg-secondary);
  color: var(--primary-blue);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  border: 1px solid var(--border-color);
}
.card-item h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
.card-item p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Product Category Badge Cards */
.product-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 16px;
}
.product-card h4 {
  color: var(--brand-navy);
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.product-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
}
.product-list li {
  padding-top: 6px;
  padding-bottom: 6px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  border-bottom: 1px dashed #f1f5f9;
  display: flex;
  align-items: center;
  gap: 8px;
}
.product-list li:last-child {
  border-bottom: none;
}
.product-list i {
  color: var(--primary-blue);
  font-size: 0.8rem;
}

/* Callout & Banner Boxes */
.callout-box {
  background-color: var(--bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  padding: 44px;
  margin-top: 24px;
  margin-bottom: 24px;
}

/* Footer (High Contrast Slate & Crisp White Headings) */
footer {
  background-color: #0b1329;
  color: #cbd5e1;
  padding-top: 65px;
  padding-bottom: 30px;
  margin-top: 0;
}
footer h1, 
footer h2, 
footer h3, 
footer h4, 
footer h5, 
footer h6,
.footer-col h4 {
  color: #ffffff !important;
  font-size: 1.15rem;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: 0.3px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.3fr 1.5fr;
  gap: 36px;
  margin-bottom: 40px;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  color: #94a3b8;
  font-weight: 500;
}
.footer-links a:hover {
  color: #38bdf8;
}
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}
.footer-contact i {
  color: #38bdf8;
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  color: #94a3b8;
  flex-wrap: wrap;
  gap: 12px;
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-size: 1.2rem;
  color: var(--brand-navy);
  cursor: pointer;
}

/* Responsive Media Queries */
@media (max-width: 1200px) {
  .brand-divider {
    display: none;
  }
  .nav-links {
    gap: 14px;
  }
  .nav-links a {
    font-size: 0.78rem;
  }
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: 2.3rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .mobile-toggle {
    display: block;
  }
  .nav-wrapper {
    display: none;
  }
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    flex-direction: column;
    padding: 30px;
    gap: 20px;
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid var(--border-color);
    z-index: 999;
  }
  .nav-wrapper.show {
    display: flex;
  }
  .nav-links.show {
    display: flex;
  }
  .nav-cta-wrapper {
    display: none;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .top-bar-info {
    gap: 8px;
    font-size: 0.75rem;
  }
  .top-bar-right {
    display: none;
  }
}


/* ==========================================================================
   RESPONSIVE DESKTOP HEADER SCALING (100% ZOOM COMPATIBILITY ON ALL MONITORS)
   ========================================================================== */
@media (max-width: 1680px) {
  .top-bar {
    font-size: 0.74rem !important;
  }
  .top-bar-info {
    gap: 8px !important;
    font-size: 0.74rem !important;
  }
  .top-ticker-item {
    display: none !important;
  }
  .header-container {
    max-width: 100% !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  .brand-logo-badge {
    width: 54px !important;
    height: 54px !important;
  }
  .brand-title {
    font-size: 1.25rem !important;
  }
  .brand-subtitle {
    font-size: 0.72rem !important;
  }
  .brand-divider {
    margin-left: 8px !important;
    margin-right: 8px !important;
    height: 28px !important;
  }
  .nav-links {
    gap: 6px !important;
  }
  .nav-links a {
    font-size: 0.71rem !important;
    letter-spacing: 0.2px !important;
    padding: 6px 1px !important;
  }
  .nav-cta-wrapper {
    margin-left: 6px !important;
    gap: 5px !important;
  }
  .btn-catalog-nav-dark {
    padding: 5px 9px !important;
    font-size: 0.70rem !important;
  }
  .btn-cta-nav {
    padding: 5px 10px !important;
    font-size: 0.70rem !important;
  }
}

@media (max-width: 1366px) {
  .nav-links {
    gap: 5px !important;
  }
  .nav-links a {
    font-size: 0.69rem !important;
    letter-spacing: 0px !important;
  }
  .brand-title {
    font-size: 1.00rem !important;
  }
}

@media (max-width: 1200px) {
  .nav-links {
    gap: 4px !important;
  }
  .nav-links a {
    font-size: 0.68rem !important;
  }
  .btn-catalog-nav-dark {
    display: none !important;
  }
}