/* OMBASE LIMITED - Ultra-Fast 60fps Enterprise UI/UX Design System */
@import url('https://fonts.cdnfonts.com/css/glacial-indifference');

:root {
  --bg-main: #ffffff;
  --bg-card: #ffffff;
  --bg-subtle: #f8f9fa;
  --bg-dark-accent: #000000;

  --border-color: #e2e8f0;
  --border-dark: #1e293b;
  --border-hover: #008DD2;

  --accent-blue: #008DD2;
  --accent-hover: #0074ad;
  --accent-light: #e6f4fc;

  --text-main: #0f172a;
  --text-heading: #000000;
  --text-muted: #475569;
  --text-dim: #64748b;

  --font-heading: 'Glacial Indifference', 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Glacial Indifference', 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;

  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 15px 25px -5px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 30px -10px rgba(0, 0, 0, 0.15);

  --transition-fast: transform 0.15s ease, color 0.15s ease, background-color 0.15s ease;
  --transition: transform 0.22s ease, opacity 0.22s ease, box-shadow 0.22s ease;
}

/* Reset & Base with GPU Performance Tuning */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-tap-highlight-color: transparent;
}

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

img {
  content-visibility: auto;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, select, textarea {
  font-family: inherit;
}

.container {
  max-width: 1680px;
  width: 94%;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* TOP GRADIENT ANNOUNCEMENT BAR */
.top-bar {
  background: #000000;
  color: #ffffff;
  font-size: 0.825rem;
  font-weight: 700;
  padding: 0.55rem 0;
  text-align: center;
  border-bottom: 1px solid #1e293b;
}

.top-bar-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
}

.badge-live {
  background: #000000;
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.15rem 0.5rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

/* MAIN HEADER NAV WITH PERFORMANCE GPU BLUR */
.main-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--border-color);
  transform: translateZ(0);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 85px;
  padding: 0.5rem 0;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0;
  padding-left: 0;
  padding-right: 1rem;
  margin-left: 0;
  border-right: none;
  height: 100%;
}

.logo-link img {
  height: 52px;
  width: auto;
  display: block;
}

.logo-mark {
  background: #000000;
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.logo-link:hover .logo-mark {
  background: var(--accent-blue);
}

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

.brand-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: #000000;
  line-height: 1.1;
  letter-spacing: -0.3px;
}

.brand-tag {
  font-size: 0.625rem;
  letter-spacing: 1px;
  color: var(--accent-blue);
  font-weight: 700;
}

/* Navigation List */
.nav-menu {
  display: flex;
  height: 100%;
  align-items: center;
}

.nav-list {
  display: flex;
  gap: 0;
  list-style: none;
  align-items: center;
  height: 100%;
}

.nav-item {
  position: static;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 700;
  color: #0f172a;
  padding: 0 1.25rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  border-bottom: 2px solid transparent;
  transition: var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: var(--accent-blue);
  border-bottom-color: var(--accent-blue);
}

.mega-arrow-up {
  font-size: 0.6rem;
  display: inline-block;
  transition: transform 0.15s ease;
}

.has-mega.open .mega-arrow-up,
.has-mega:hover .mega-arrow-up {
  transform: rotate(180deg);
}

/* FLOATING MEGA MENU CARD */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 85vw;
  max-width: 1350px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-xl);
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s ease, visibility 0.18s ease;
  z-index: 150;
  pointer-events: none;
}

.has-mega.open .mega-menu,
.has-mega:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mega-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: stretch;
}

.mega-col {
  padding: 2rem 2.25rem;
  border-right: 1px solid #f1f5f9;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #ffffff;
}

.mega-col:last-child {
  border-right: none;
}

.mega-col-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.35rem;
}

.mega-col-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #000000;
  display: block;
}

.mega-col-arrow-btn {
  width: 26px;
  height: 26px;
  border: 1px solid var(--border-color);
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: #000000;
}

.mega-col:hover .mega-col-arrow-btn {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}

.mega-col-subtitle {
  font-size: 0.775rem;
  color: var(--text-dim);
  line-height: 1.4;
  margin-bottom: 1.25rem;
}

.mega-graphic-box {
  height: 130px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  padding: 0.75rem;
  background: #ffffff;
  border: 1px solid var(--border-color);
}

.mega-graphic-box img {
  max-height: 110px;
  max-width: 100%;
  object-fit: contain;
}

.mega-sub-links {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.mega-sub-links li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 0;
  border-top: 1px solid #f1f5f9;
  font-size: 0.875rem;
  font-weight: 700;
  color: #0f172a;
}

.mega-sub-links li a:hover {
  color: var(--accent-blue);
}

.mega-sub-arrow {
  font-size: 0.65rem;
  color: #000000;
}

/* RIGHT HEADER ACTIONS */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-social-icons {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  padding-right: 1rem;
  border-right: 1px solid var(--border-color);
}

.header-social-icons a {
  color: #475569;
  font-size: 0.95rem;
}

.header-social-icons a:hover {
  color: var(--accent-blue);
}

.btn-contact-sales {
  background: #ffffff;
  border: 1px solid #000000;
  color: #000000;
  font-size: 0.775rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 0.6rem 1.25rem;
  cursor: pointer;
  text-transform: uppercase;
}

.btn-contact-sales:hover {
  background: #f1f5f9;
}

.btn-hpe-explore {
  background: #008DD2;
  color: #ffffff;
  border: none;
  border-radius: 24px;
  padding: 0.65rem 1.4rem;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  transition: background 0.15s ease;
}

.btn-hpe-explore:hover {
  background: #0074ad;
}

.btn-try-free {
  background: #008DD2;
  border: 1px solid #008DD2;
  color: #ffffff;
  font-size: 0.775rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 0.6rem 1.25rem;
  cursor: pointer;
  text-transform: uppercase;
}

.btn-try-free:hover {
  background: #0074ad;
  border-color: #0074ad;
}

/* HPE-STYLE DARK HERO SECTION WITH GEOMETRIC CHEVRONS & DIAMOND VIDEO MASK */
.hpe-hero-section {
  position: relative;
  background: #10141e;
  color: #ffffff;
  padding: 6rem 0 5rem 0;
  overflow: hidden;
  border-bottom: 1px solid #1e293b;
}

/* Background Geometric Chevron Layer 1 */
.hpe-chevron-layer-1 {
  position: absolute;
  top: -50px;
  right: 18%;
  width: 700px;
  height: 700px;
  background: #1a2030;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  opacity: 0.65;
  pointer-events: none;
  z-index: 1;
}

/* Background Geometric Chevron Layer 2 */
.hpe-chevron-layer-2 {
  position: absolute;
  top: 40px;
  right: 8%;
  width: 550px;
  height: 550px;
  background: #242c40;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  opacity: 0.85;
  pointer-events: none;
  z-index: 2;
}

.hpe-hero-container {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 3;
}

.hpe-hero-subtitle {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.hpe-hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1.05;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.hpe-hero-desc {
  color: #cbd5e1;
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 580px;
}

.hpe-hero-cta-row {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  flex-wrap: wrap;
}

.btn-hpe-pill-white {
  background: #ffffff;
  color: #000000;
  border: none;
  border-radius: 30px;
  padding: 0.85rem 1.85rem;
  font-size: 0.9rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
  text-transform: none;
}

.btn-hpe-pill-white:hover {
  background: #f1f5f9;
  transform: translateY(-2px);
}

.btn-hpe-pill-white-outline {
  background: #ffffff;
  color: #000000;
  border: none;
  border-radius: 30px;
  padding: 0.85rem 1.85rem;
  font-size: 0.9rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
  text-transform: none;
}

.btn-hpe-pill-white-outline:hover {
  background: #f1f5f9;
  transform: translateY(-2px);
}

/* RIGHT DIAMOND VIDEO MASK */
.hpe-hero-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  position: relative;
}

.hpe-diamond-wrapper {
  position: relative;
  width: 500px;
  height: 500px;
}

.hpe-diamond-mask {
  width: 100%;
  height: 100%;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  position: relative;
  background: #0a0f1d;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hpe-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  filter: contrast(1.1) brightness(0.85);
}

.hpe-hardware-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  z-index: 2;
}

.hpe-hero-img {
  max-width: 90%;
  max-height: 300px;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.7));
  transition: transform 0.3s ease;
}

.hpe-hero-thumbs {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  justify-content: center;
  position: relative;
  z-index: 4;
}

.hpe-hero-thumbs img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  background: #ffffff;
  border: 2px solid transparent;
  padding: 4px;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.hpe-hero-thumbs img.active, .hpe-hero-thumbs img:hover {
  border-color: #ffffff;
  transform: scale(1.08);
}
  cursor: pointer;
}

.hero-visual-thumbs img.active, .hero-visual-thumbs img:hover {
  border-color: var(--accent-blue);
}

/* BANNER WITH PARTNER LOGOS */
.partner-logo-banner {
  background: #f8fafc;
  padding: 2.5rem 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.partner-logo-grid {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.partner-logo-item {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.35rem;
  color: #000000;
  opacity: 0.85;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* INTERACTIVE TABBED PORTFOLIO SECTION */
.tabbed-portfolio-section {
  padding: 4.5rem 0;
  background: #ffffff;
  border-bottom: 1px solid var(--border-color);
}

.category-tabs-nav {
  display: flex;
  gap: 2.25rem;
  background: transparent;
  padding: 0;
  border: none;
  border-bottom: 2px solid #e2e8f0;
  margin-bottom: 2.5rem;
  overflow-x: auto;
}

.tab-btn {
  background: transparent;
  border: none;
  padding: 0.85rem 0.25rem 1rem 0.25rem;
  font-size: 1rem;
  font-weight: 700;
  color: #475569;
  cursor: pointer;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.tab-btn:hover {
  color: #000000;
  border-bottom-color: #cbd5e1;
}

.tab-btn.active {
  background: transparent;
  color: #008DD2;
  border-bottom-color: #008DD2;
}

/* TAB PANEL GPU OPTIMIZED DISPLAY */
.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

/* SECTION HEADERS */
.section-header {
  margin-bottom: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
}

.section-header.center {
  text-align: center;
  flex-direction: column;
  align-items: center;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 0.5rem;
  letter-spacing: -0.3px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 720px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.75rem;
}

/* HPE-STYLE CLEAN PRODUCT CARD (MATCHING MULTI-PLATFORM SECTION) */
.hpe-card {
  background: transparent;
  border: none;
  border-left: 1px solid #e2e8f0;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease;
  transform: translateZ(0);
  cursor: pointer;
}

.hpe-card:hover {
  transform: translateY(-2px);
}

.hpe-img-box {
  background: transparent;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  margin-bottom: 0.5rem;
  border: none;
}

.hpe-img-box img {
  max-height: 160px;
  max-width: 100%;
  object-fit: contain;
}

.hpe-card-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.hpe-card-desc {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 1.75rem;
}

.hpe-card-divider {
  border: none;
  border-top: 1px solid #e2e8f0;
  margin-bottom: 1.5rem;
}

.btn-hpe-explore {
  background: #1e293b;
  color: #ffffff;
  border: none;
  border-radius: 24px;
  padding: 0.65rem 1.4rem;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  transition: background 0.15s ease;
}

.btn-hpe-explore:hover {
  background: #000000;
}

.product-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-top: 3px solid var(--accent-blue);
  padding: 1.85rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  transform: translateZ(0);
}

.product-card:hover {
  border-color: #000000;
  transform: translateY(-4px) translateZ(0);
  box-shadow: var(--shadow-lg);
}

.card-img-wrapper {
  height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  background: #ffffff;
  border: 1px solid var(--border-color);
  padding: 1.25rem;
}

.card-img-wrapper img {
  max-width: 100%;
  max-height: 185px;
  object-fit: contain;
}

.product-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 0.25rem;
}

.product-subtitle {
  color: var(--accent-blue);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.specs-mini-list {
  background: #f8fafc;
  border: 1px solid var(--border-color);
  padding: 0.9rem 1.1rem;
  margin-bottom: 1.5rem;
  font-size: 0.825rem;
  color: var(--text-main);
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.specs-mini-list li {
  list-style: none;
}

/* CUSTOMER STORIES & STYLISH CHAMFERED CARDS WITH GPU HARDWARE ACCELERATION */
.customer-stories-section {
  padding: 4.5rem 0;
  background: #ffffff;
  border-bottom: 1px solid var(--border-color);
}

.case-stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 1.75rem;
  margin-bottom: 2rem;
}

.case-story-card {
  position: relative;
  height: 480px;
  background: #000000;
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 0 100%);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  transform: translateZ(0);
  will-change: transform;
}

.case-story-card:hover {
  transform: translateY(-4px) translateZ(0);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.case-story-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
  transform: translateZ(0);
}

.case-story-card:hover img {
  transform: scale(1.05) translateZ(0);
}

.case-story-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  color: #ffffff;
}

.case-story-tag {
  font-size: 0.725rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: #78a9ff;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.case-story-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.case-story-quote {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.45;
  font-style: italic;
}

.carousel-nav-group {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.carousel-nav-btn {
  width: 42px;
  height: 42px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  color: #000000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.85rem;
}

.carousel-nav-btn:hover {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--accent-blue);
  color: #ffffff;
}

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

/* MODALS */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.75);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal-overlay.hidden {
  display: none;
}

.modal-container {
  background: #ffffff;
  border: 1px solid var(--border-color);
  width: 100%;
  max-width: 720px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.5rem;
  position: relative;
  box-shadow: var(--shadow-xl);
}

.modal-large {
  max-width: 1100px;
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #000000;
  font-size: 1.85rem;
  cursor: pointer;
}

/* TOAST NOTIFICATION */
.toast-notification {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #000000;
  color: #ffffff;
  padding: 0.85rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-lg);
  z-index: 300;
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.toast-notification.active {
  transform: translateY(0);
  opacity: 1;
}

/* FOOTER */
.site-footer {
  background-color: #ffffff;
  border-top: 1px solid var(--border-color);
  padding: 4rem 0 3rem 0;
  color: #000000;
}

.footer-main-title {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 2.5rem;
}

.footer-matrix-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.col-head {
  font-size: 0.725rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  display: block;
}

.footer-col-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-col-nav a {
  font-size: 0.875rem;
  color: #000000;
  font-weight: 600;
}

.footer-col-nav a:hover {
  color: var(--accent-blue);
  text-decoration: underline;
}

.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
  color: var(--text-dim);
  font-size: 0.875rem;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .mega-menu {
    width: 95vw;
  }
  .mega-container {
    grid-template-columns: 1fr;
  }
  .mega-col {
    border-right: none;
    border-bottom: 1px solid #f1f5f9;
  }
}

@media (max-width: 860px) {
  .has-mega .mega-menu {
    display: none;
  }
}
