body {
  margin: 0;
  font-family: "Inter", sans-serif;
}


.footer {
  background: var(--secondary-1);
  color: var(--on-secondary);
  padding-top: 4rem;
}

/* Main Grid */
.footer-container {
  max-width: 1280px;
  margin: auto;
  padding: 0 1.5rem 3rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}

/* Brand Column */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.brand-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-icon {
  background: var(--primary-1);
  padding: 0.5rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-icon span {
  font-size: 28px;
  color: var(--on-primary);
}

.brand-logo {
  height: 42px;
  width: auto;
}

/* Text */
.brand-text h4 {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
  font-weight: 600;
}

.brand-text p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: #d1d5db;
}

/* Payments */
.payment-section {
  margin-top: 0.75rem;
}

.payment-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #4ade80;
}

.payment-icons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.paypal {
  background: #ffffff;
  padding: 0.35rem 0.65rem;
  border-radius: 0.4rem;
  font-size: 0.95rem;
  font-weight: 700;
  font-style: italic;
}

.paypal .pay {
  color: #003087;
}

.paypal .pal {
  color: #009cde;
}

/* Mastercard */
.card.mc {
  background: #ffffff;
  width: 40px;
  height: 24px;
  border-radius: 0.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.card.mc span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}

.card.mc span:first-child {
  background: #eb001b;
  opacity: 0.85;
  margin-right: -4px;
}

.card.mc span:last-child {
  background: #f79e1b;
  opacity: 0.85;
}

/* Visa */
.card.visa {
  background: #ffffff;
  width: 40px;
  height: 24px;
  border-radius: 0.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  font-style: italic;
  color: #1a1f71;
}

/* Amex */
.card.amex {
  background: #ffffff;
  width: 40px;
  height: 24px;
  border-radius: 0.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: 900;
  color: #0070d2;
}

/* Lock */
.lock {
  font-size: 16px;
  color: #9ca3af;
}

/* Columns */
.footer-col h3 {
  color: var(--primary-1);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 0.9rem;
}

.footer-col a {
  color: #d1d5db;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.25s ease;
}

.footer-col a:hover {
  color: var(--primary-1);
  padding-left: 4px;
}

/* Support Box */
.support-box {
  margin-top: 2rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
}

.support-box p {
  font-size: 0.75rem;
  color: #9ca3af;
  margin-bottom: 0.5rem;
}

.support-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--primary-1);
}

/* Bottom Bar */
.footer-bottom {
  background: var(--primary-2);
  padding: 0.75rem 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  color: var(--on-primary);
  font-size: 0.85rem;
  font-weight: 600;
}

.footer-bottom .divider {
  display: none;
}

.footer-bottom .brand-name {
  font-weight: 800;
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
  }

  .brand-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom .divider {
    display: inline;
  }
}
