﻿.awg-site-footer {
  position: relative;
  width: 100%;
  width: 100vw;
  max-width: 100vw;
  overflow: hidden;
  color: #d9e6f2;
  background:
    linear-gradient(135deg, #06192d 0%, #0b2745 58%, #123f70 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  box-sizing: border-box;
  clear: both;
}

.awg-site-footer *,
.awg-site-footer *::before,
.awg-site-footer *::after {
  box-sizing: border-box;
}

.awg-footer-inner {
  display: grid;
  max-width: 1180px;
  grid-template-columns: minmax(260px, 1.45fr) repeat(3, minmax(150px, 0.7fr));
  gap: 34px;
  margin: 0 auto;
  padding: 54px 22px 34px;
}

.awg-footer-brand {
  display: grid;
  gap: 16px;
  max-width: 440px;
}

.awg-footer-brand-row {
  display: flex;
  align-items: center;
  gap: 13px;
}

.awg-footer-mark {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 10px;
  color: #ffffff;
  background: linear-gradient(135deg, #2f72f6, #55b7d7);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0;
  box-shadow: 0 16px 30px rgba(47, 114, 246, 0.25);
}

.awg-footer-name {
  display: grid;
  gap: 3px;
}

.awg-footer-name strong {
  color: #ffffff !important;
  font-size: 18px;
  line-height: 1.1;
}

.awg-footer-name span {
  color: #9fb4ca !important;
  font-size: 12px;
  font-weight: 700;
}

.awg-footer-description {
  max-width: 420px;
  margin: 0;
  color: #b8cadb !important;
  font-size: 14.5px;
  line-height: 1.75;
}

.awg-footer-column {
  display: grid;
  align-content: start;
  gap: 13px;
}

.awg-footer-heading {
  margin: 0;
  color: #ffffff !important;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.awg-footer-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.awg-footer-list a,
.awg-footer-list span {
  color: #c1d0df !important;
  font-size: 14px;
  line-height: 1.45;
  text-decoration: none;
}

.awg-footer-list a:hover {
  color: #ffffff !important;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.awg-footer-cta {
  display: inline-flex;
  width: fit-content;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  margin-top: 3px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: #ffffff !important;
  background: rgba(47, 114, 246, 0.88);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.18);
}

.awg-footer-cta:hover {
  background: #ffffff;
  color: #0b2745 !important;
  text-decoration: none;
}

.awg-footer-bottom {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 22px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #9fb4ca !important;
  font-size: 13px;
}

@media (max-width: 900px) {
  .awg-footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .awg-footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .awg-footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 42px 20px 28px;
  }

  .awg-footer-bottom {
    padding-right: 20px;
    padding-left: 20px;
  }
}

