.eg-footer {
  background: linear-gradient(180deg, #0f172a, #0b1324);
  color: rgba(255, 255, 255, 0.86);
  padding: 70px 0 22px;
}

.eg-footer__wrap {
  width: min(1260px, 100%);
  margin-inline: auto;
  padding-inline: clamp(14px, 4vw, 28px);
}

.eg-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 0.75fr 0.95fr;
  gap: 18px;
  align-items: start;
}

.eg-footer__brand {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.eg-footer__logo {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: #fff;
  padding: 8px;
  object-fit: contain;
}

.eg-footer__name {
  font-family: var(--ff-chakra-petch, system-ui);
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 1.2rem;
  color: #fff;
}

.eg-footer__text {
  margin: 10px 0 0;
  max-width: 60ch;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.6;
}

.eg-footer__badges {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.eg-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-weight: 900;
  font-size: 1.25rem;
}
.eg-badge .material-symbols-rounded {
  color: var(--brand, #d01414);
}

.eg-footer__col h4 {
  margin: 0 0 12px;
  color: #fff;
  font-family: var(--ff-chakra-petch, system-ui);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 1.15rem;
}

.eg-footer__col a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 800;
  transition: 0.2s ease;
}
.eg-footer__col a:hover {
  color: #fff;
  transform: translateX(3px);
}

.eg-footer__cta {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 999px;
  background: var(--brand, #d01414);
  color: #fff !important;
  font-family: var(--ff-chakra-petch, system-ui);
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid transparent;
}
.eg-footer__cta:hover {
  background: #0b1324;
  border-color: rgba(255, 255, 255, 0.18);
}

.eg-footer__bottom {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 800;
  font-size: 1.25rem;
}

.eg-topBtn {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  display: grid;
  place-items: center;
  color: #fff;
  text-decoration: none;
  transition: 0.2s ease;
}
.eg-topBtn:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 980px) {
  .eg-footer__grid {
    grid-template-columns: 1fr;
  }
  .eg-footer {
    padding-top: 56px;
  }
}
.eg-footer__credit {
  display: flex;
  align-items: center;
  justify-content: center;     /* ⬅ CENTERED */
  gap: 14px;
  width: 100%;
  margin-top: 18px;
  font-size: 17px;             /* ⬆ BIG TEXT */
  font-weight: 600;
  opacity: 0.95;
}

.eg-footer__credit-text {
  font-weight: 500;
}

.eg-footer__credit-name {
  font-weight: 700;
  letter-spacing: 0.3px;
}

.eg-footer__credit-logo {
  height: 34px;                /* ⬆ BIG LOGO */
  width: auto;
  object-fit: contain;
}

/* Mobile */
@media (max-width: 640px) {
  .eg-footer__credit {
    font-size: 16px;
    gap: 12px;
    margin-top: 14px;
  }

  .eg-footer__credit-logo {
    height: 30px;
  }
}
.eg-footer__credit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 22px;
  font-size: 18px;        /* BIG & readable */
  font-weight: 600;
}

.eg-footer__credit-text {
  opacity: 0.85;
}

.eg-footer__credit-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.eg-footer__credit-link:hover {
  transform: translateY(-2px);
  opacity: 1;
}

.eg-footer__credit-logo {
  height: 38px;           /* BIG LOGO */
  width: auto;
  object-fit: contain;
}

.eg-footer__credit-name {
  font-weight: 700;
  letter-spacing: 0.4px;
}

/* Mobile */
@media (max-width: 640px) {
  .eg-footer__credit {
    font-size: 16px;
    gap: 12px;
    margin-top: 18px;
  }

  .eg-footer__credit-logo {
    height: 32px;
  }
}
