/* =============================================
   Footer — Dark, trust-building
   ============================================= */

.footer {
  background: #000;
  border-top: none;
  padding: 90px 0 36px;
  color: rgba(255,255,255,0.5);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
}

.footer__brand img {
  display: block;
  margin-bottom: 24px;
  filter: brightness(0) invert(1);
  opacity: 1;
}

.footer__brand-text {
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 380px;
  letter-spacing: 0.2px;
}

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

.footer__contact-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: color var(--transition);
  letter-spacing: 0.3px;
}

.footer__contact-item:hover {
  color: #fff;
}

.footer__contact-item svg {
  width: 16px;
  height: 16px;
  color: rgba(255,255,255,0.5);
  flex-shrink: 0;
  stroke-width: 1.5;
}

.footer__col-title {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: #fff;
}

.footer__link {
  display: block;
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  padding: 6px 0;
  transition: color var(--transition);
  text-decoration: none;
  letter-spacing: 0.2px;
}

.footer__link:hover {
  color: #fff;
}

/* Trust list */
.footer__trust-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__trust-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.2px;
}

.footer__trust-list svg {
  width: 16px;
  height: 16px;
  color: rgba(255,255,255,0.5);
  flex-shrink: 0;
  stroke-width: 1.5;
}

/* Payment methods */
.footer__payments {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}

.footer__payments-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.4);
  font-weight: 700;
  white-space: nowrap;
}

.footer__payments-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.footer__payment {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 36px;
  border-radius: 4px;
  overflow: hidden;
  transition: opacity 0.2s ease;
  opacity: 0.85;
}

.footer__payment:hover {
  opacity: 1;
}

.footer__payment svg {
  width: 100%;
  height: 100%;
  display: block;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__copyright,
.footer__legal {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 24px;
  }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .footer { padding: 48px 0 24px; }
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer__payments {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
