/* ================================================
   FOOTER - Legacy styles mapped to  scope
   ================================================ */
   *{
  --color-bg: #0b0d10;
    --color-fg: #e9eef2;
    --accent-color: #4ade80;
    --accent-tech: #4ade80;
    --accent-surface-strong: rgba(74, 222, 128, .2);
    --accent-surface-soft: rgba(74, 222, 128, .1);
    --accent-surface-border: rgba(74, 222, 128, .3);
    --accent-color-hover: #22c55e;
    --accent-mktg: #ff68b8;
    --radius-2: 8px;
    --radius-3: 12px;
    --border-1: 1px solid hsla(0, 0%, 100%, .1);
    --space-1: .25rem;
    --space-2: .5rem;
    --space-3: 1rem;
    --space-4: 1.5rem;
    --space-5: 2rem;
    --space-6: 3rem;
    --font-sans: Roboto, -apple-system, BlinkMacSystemFont, "Segoe UI", Oxygen, Ubuntu, sans-serif;
    --size-0: clamp(.875rem, .8rem + .3vw, 1rem);
    --size-1: clamp(1rem, .9rem + .6vw, 1.25rem);
    --size-2: clamp(1.25rem, 1rem + 1.1vw, 1.625rem);
    --size-3: clamp(1.5rem, 1rem + 1.8vw, 2.125rem);
    --letter-spacing-wide: 3px;
    --letter-spacing-wider: .3em;
    --font-weight-normal: normal;
    --font-weight-bold: bold;
    --section-max: 1120px;
    --section-pad: clamp(16px, 4vw, 32px);
}

/* Main footer container */
 .site-footer {
  background: #000;
  color: var(--color-fg);
  padding: 3rem 2rem 2rem !important;
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer grid container */
 .footer-container {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

/* Footer section headings */
 .footer-section h3 {
  color: #fff;
  font-size: 1.125rem;
  font-weight: normal;
  letter-spacing: 3px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

 .footer-section.footer-brand h3 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 1rem;
}

/* Footer section lists */
 .footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

 .footer-section ul li {
  margin-bottom: 0.75rem;
}

/* Footer section links */
 .footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  font-weight: normal;
}

 .footer-section a:hover {
  color: #fff;
}

/* Footer section paragraphs */
 .footer-section p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Footer bottom bar */
 .footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}


.footer-section.footer-brand {
    font-weight: lighter !important;
    margin-top: 0;
    margin-bottom: 1rem;
}

 .footer-bottom p {
  margin: 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Footer social links */
 .footer-social {
  display: flex;
  gap: 1.5rem;
}

 .footer-social a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.25rem;
  transition: color 0.3s ease;
  text-decoration: none;
}

 .footer-social a:hover {
  color: #fff;
}

/* ================================================
   MOBILE RESPONSIVE
   ================================================ */

@media (max-width: 768px) {
   .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

   .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

   .site-footer {
    padding: 1.0rem 0.5rem 0.5rem !important;
    margin-top: 4rem;
  }
}
