/* Global footer — hero-style dark gradient */

.eet-footer {
  --eet-green: #4ba248;
  --eet-green-dark: #3d8a3a;
  --eet-green-700: #357f33;
  --eet-green-50: #ecf7eb;
  --eet-yellow: #fdce2b;
  --ink-900: #0f1a14;
  --ink-muted: #9eb0a4;
  --ink-soft: #c8d4cb;
  --line: rgba(255, 255, 255, 0.14);
  --line-soft: rgba(255, 255, 255, 0.08);

  position: relative;
  overflow: hidden;
  isolation: isolate;
  width: 100%;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink-soft);
  border: none;
  background:
    radial-gradient(900px 520px at 88% 8%, rgba(75, 162, 72, 0.48), transparent 58%),
    radial-gradient(720px 460px at 0% 92%, rgba(253, 206, 43, 0.14), transparent 55%),
    radial-gradient(560px 360px at 42% 40%, rgba(75, 162, 72, 0.12), transparent 68%),
    linear-gradient(165deg, var(--ink-900) 0%, #0c1410 32%, #152a18 58%, var(--eet-green-700) 100%) !important;
}

/* Tech grid — same feel as .se-page .hero::before */
.eet-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

/* Top accent line */
.eet-footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(75, 162, 72, 0.65) 25%,
    rgba(253, 206, 43, 0.45) 50%,
    rgba(75, 162, 72, 0.65) 75%,
    transparent 100%
  );
  z-index: 2;
  pointer-events: none;
}

.eet-footer__main,
.eet-footer__badges,
.eet-footer__bottom {
  position: relative;
  z-index: 1;
}

.eet-footer a {
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.2s ease;
}

.eet-footer a:hover {
  color: #fff;
}

.eet-footer h4 {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.75px;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.eet-footer h4::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--eet-yellow);
  flex-shrink: 0;
}

/* ============================
MAIN GRID
============================ */
.eet-footer__main {
  padding: 48px 0 32px;
}

.eet-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 0.9fr;
  gap: 36px 28px;
  max-width: 75rem;
  margin: 0 auto;
}

.eet-footer__brand .logo {
  width: 120px;
  height: auto;
  margin-bottom: 16px;
  display: block;
}

.eet-footer__tagline {
  font-size: 15px;
  line-height: 1.65;
  color: #e8f0ea;
  margin: 0 0 20px;
  max-width: 340px;
}

.eet-footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.eet-footer__contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #e8efe9;
}

.eet-footer__contact-link svg {
  flex-shrink: 0;
  fill: var(--eet-green);
}

.eet-footer__contact-link:hover {
  color: var(--eet-yellow);
}

.eet-footer__contact-link:hover svg {
  fill: var(--eet-yellow);
}

.eet-footer__nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.eet-footer__nav li {
  margin-bottom: 8px;
}

.eet-footer__nav a {
  font-size: 15px;
  line-height: 1.5;
  color: #d4dfd6;
}

.eet-footer__nav a:hover {
  color: var(--eet-yellow);
}

.eet-footer__nav a.eet-footer__link--accent {
  color: #fff;
  font-weight: 600;
}

.eet-footer__nav a.eet-footer__link--accent:hover {
  color: var(--eet-yellow);
}

/* Social */
.eet-footer__social-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.eet-footer__social-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(75, 162, 72, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  backdrop-filter: blur(6px);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.eet-footer__social-list a:hover {
  background: var(--eet-green);
  border-color: rgba(253, 206, 43, 0.45);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
}

.eet-footer__social-list svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

/* Neutralize legacy footer rules */
.eet-footer .social-links {
  position: static;
}

.eet-footer ul li a {
  line-height: inherit;
}

/* ============================
ANPC BADGES
============================ */
.eet-footer__badges {
  border-top: 1px solid var(--line-soft);
  padding: 28px 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.28) 100%);
}

.eet-footer__badges-inner {
  max-width: 75rem;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px 32px;
}

.eet-footer__badge img {
  display: block;
  max-width: 220px;
  width: 100%;
  height: auto;
  opacity: 0.92;
  transition: opacity 0.2s ease;
}

.eet-footer__badge a:hover img {
  opacity: 1;
}

/* ============================
COPYRIGHT
============================ */
.eet-footer__bottom {
  border-top: 1px solid var(--line-soft);
  padding: 20px 0 24px;
  text-align: center;
  background: rgba(0, 0, 0, 0.22);
}

.eet-footer__bottom p {
  margin: 0;
  font-size: 13px;
  color: var(--ink-muted);
  letter-spacing: 0.25px;
}

.eet-footer__bottom strong {
  color: #e8f0ea;
  font-weight: 600;
}

/* Override legacy .footer (app.css #2a323c flat bg) */
.footer.background-color.eet-footer,
.eet-footer.background-color.footer {
  background:
    radial-gradient(900px 520px at 88% 8%, rgba(75, 162, 72, 0.48), transparent 58%),
    radial-gradient(720px 460px at 0% 92%, rgba(253, 206, 43, 0.14), transparent 55%),
    linear-gradient(165deg, var(--ink-900) 0%, #0c1410 32%, #152a18 58%, var(--eet-green-700) 100%) !important;
  border: none;
  color: var(--ink-soft);
}

.eet-footer.background-color.footer ul li a,
.footer.background-color.eet-footer ul li a {
  color: #d4dfd6;
}

.eet-footer.background-color.footer ul li a:hover,
.footer.background-color.eet-footer ul li a:hover {
  color: var(--eet-yellow);
}

/* ============================
RESPONSIVE
============================ */
@media (max-width: 1024px) {
  .eet-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .eet-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .eet-footer__main {
    padding: 36px 0 24px;
  }

  .eet-footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .eet-footer__badges {
    padding: 20px 0;
  }

  .eet-footer__badges-inner {
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
  }

  .eet-footer__badge {
    flex: 1 1 0;
    min-width: 0;
    max-width: calc(50% - 5px);
  }

  .eet-footer__badge a {
    display: block;
  }

  .eet-footer__badge img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
}
