/* =====================================================
   SENSEYE FOOTER — NEW DESIGN
   Loaded via <link> injected inside footer.html so it
   only applies when the shared footer is present.
   Relies on design tokens defined in style.css :root.
   ===================================================== */


/* =====================================================
   LAYOUT & FORMAT
   ===================================================== */

.senseye-footer {
  padding: 60px 30px 32px;
  font-family: 'Source Sans 3', sans-serif;
}

.senseye-footer-main {
  max-width: 1248px;
  margin: 0 auto 48px;
  display: flex;
  gap: 60px;
  align-items: flex-start;
  flex-wrap: wrap;
}

/* Brand / logo column */
.senseye-footer-brand {
  flex-shrink: 0;
}
.senseye-footer-brand img {
  height: 34px;
  width: auto;
  display: block;
}

/* Nav columns group */
.senseye-footer-nav {
  flex: 1;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.senseye-footer-col h4 {
  margin: 0 0 14px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0;
  text-transform: none;
}

.senseye-footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.senseye-footer-col ul li a {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 150ms ease;
}

/* Connect row */
.senseye-footer-connect {
  max-width: 1248px;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 28px;
}

.senseye-footer-connect span {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  margin-right: 4px;
}

/* Social icon buttons */
.senseye-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border-style: solid;
  border-width: 1px;
  text-decoration: none;
  transition: background 150ms ease, color 150ms ease;
  flex-shrink: 0;
}
.senseye-social svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
  display: block;
}

/* Legal */
.senseye-footer-legal {
  max-width: 1248px;
  margin: 0 auto;
}
.senseye-footer-legal p {
  margin: 0 0 6px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
}
.senseye-footer-legal a {
  text-decoration: none;
}

@media (max-width: 768px) {
  .senseye-footer { padding: 48px 20px 28px; }
  .senseye-footer-main { gap: 36px; flex-direction: column; }
  .senseye-footer-nav { gap: 28px; }
}


/* =====================================================
   COLORS & THEME
   ===================================================== */

.senseye-footer {
  background: rgba(41, 50, 104, 0.5);
  color: var(--senseye-text);
}

/* Column heading color */
.senseye-footer-col h4 {
  color: var(--senseye-white);
}

/* Nav link colors */
.senseye-footer-col ul li a {
  color: #ffffff;
}
.senseye-footer-col ul li a:hover {
  color: var(--senseye-teal);
}

/* "Connect" label color */
.senseye-footer-connect span {
  color: var(--senseye-teal);
}

/* Social icon colors */
.senseye-social {
  background: transparent;
  border-color: var(--senseye-teal);
  color: var(--senseye-teal);
}
.senseye-social:hover {
  background: var(--senseye-teal);
  color: var(--senseye-navy-deep);
}

/* Legal text colors */
.senseye-footer-legal p {
  color: rgba(255, 255, 255, 0.45);
}
.senseye-footer-legal a {
  color: rgba(255, 255, 255, 0.55);
}
.senseye-footer-legal a:hover {
  color: var(--senseye-teal);
}
