.grk-footer {
  background: #1d1d1d;
  color: #ffffff;
  padding: 56px 0 58px;
  border-top: 1px solid #2a2a2a;
  font-family: Arial, Helvetica, sans-serif;
}

.grk-footer-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.grk-footer-top {
  display: grid;
  grid-template-columns: 350px 1fr 1fr 1fr;
  column-gap: 40px;
  align-items: flex-start;
  transform: translateX(80px);
  
}

.grk-footer-brand {
  transform: translateY(-25px);
}

.grk-footer-logo {
  display: block;
  width: 146px;
  max-width: 100%;
  height: auto;
  margin-bottom: 34px;
}

.grk-footer-description {
  margin: 0 0 22px;
  color: #f3f3f3;
  font-size: 15px;
  line-height: 1.52;
  font-weight: 600;
  letter-spacing: -0.1px;
}

.grk-footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.grk-footer-contact-item {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #f3f3f3;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
}

.grk-footer-contact-item a,
.grk-footer-contact-item span {
  color: #f3f3f3;
  text-decoration: none;
}

.grk-footer-icon-box {
  width: 25px;
  height: 25px;
  min-width: 25px;
  border-radius: 8px;
  background: #232323;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.grk-footer-icon-img {
  width: 14px;
  height: 14px;
  object-fit: contain;
  display: block;
}

.grk-footer-col h4 {
  margin: 0 0 24px;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 600;
}

.grk-footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.grk-footer-col li {
  margin-bottom: 13px;
}

.grk-footer-col li:last-child {
  margin-bottom: 0;
}

.grk-footer-col a {
  color: #f2f2f2;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 400;
}

.grk-footer-col a:hover {
  color: #ffffff;
}

.grk-footer-divider {
  margin-top: 48px;
  margin-bottom: 26px;
  height: 1px;
  background: #2a2a2a;
}

.grk-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.grk-footer-copy {
  margin: 0;
  color: #f0f0f0;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 400;
}

.grk-footer-values {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #f3f3f3;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 400;
  white-space: nowrap;
}

.grk-footer-values .dot {
  color: #666666;
  font-weight: 400;
}

@media (max-width: 900px) {
  .grk-footer {
    padding: 42px 20px 42px;
  }

  .grk-footer-inner {
    max-width: 100%;
  }

  .grk-footer-top {
    grid-template-columns: 1fr 1fr;
    row-gap: 36px;
    column-gap: 32px;
  }

  .grk-footer-brand {
    grid-column: 1 / -1;
  }

  .grk-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .grk-footer-values {
    white-space: normal;
    flex-wrap: wrap;
  }
}

@media (max-width: 560px) {
  .grk-footer-top {
    grid-template-columns: 1fr;
  }

  .grk-footer-col {
    width: 100%;
  }
}