/* ── Footer ── */
.footer {
  background: var(--navy-dark);
  color: var(--white);
}

.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 48px 40px;
  display: grid;
  grid-template-columns: 1.1fr 1.4fr 0.9fr 1.1fr;
  gap: 36px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo-img {
  height: 96px;
  width: auto;
  max-width: 320px;
  object-fit: contain;
}

.footer-col h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
}

.footer-about p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.75;
}

.footer-nav {
  list-style: none;
}

.footer-nav li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-nav li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-nav a {
  display: block;
  padding: 12px 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--white);
}

.footer-contact-list {
  list-style: none;
}

.footer-contact-list li {
  margin-bottom: 14px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.55;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-contact-list li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.footer-bottom {
  background: #0f1a14;
  padding: 28px 48px 24px;
  text-align: center;
}

.footer-secure {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 14px;
}

.footer-secure strong {
  font-weight: 700;
  color: var(--white);
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 8px 14px;
  margin-bottom: 20px;
}

.footer-badge-icon {
  width: 32px;
  height: 32px;
  background: #1b8f3a;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-badge-icon svg {
  width: 18px;
  height: 18px;
}

.footer-badge-text {
  text-align: left;
  font-size: 10px;
  font-weight: 700;
  color: #333;
  line-height: 1.3;
  letter-spacing: 0.3px;
}

.footer-badge-text span {
  display: block;
  font-size: 9px;
  font-weight: 600;
  color: #666;
}

.footer-copyright {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: 1fr;
    padding: 40px 24px 32px;
    gap: 32px;
  }
  .footer-bottom {
    padding: 24px;
  }
}
