/* Shared site footer styles. Loaded by index.html, userDetails.html, sandboxConfirmation.html. */

.section-spacer {
  background: #ffffff;
  height: 64px;
}

.site-footer {
  background: #350063;
  color: #ffffff;
  font-family: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
  padding: 72px 72px 28px;
  position: relative;
}

.site-footer-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}

.site-footer-inner > .footer-newsletter + .footer-col {
  border-left: 1px solid rgba(255, 255, 255, 0.22);
  padding-left: 48px;
  margin-left: -24px;
}

.footer-newsletter {
  display: flex;
  flex-direction: column;
}

.newsletter-title {
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.3;
}

.newsletter-form {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  max-width: 380px;
}

.newsletter-input {
  flex: 1;
  min-width: 0;
  padding: 11px 16px;
  border: 1px solid #ffffff;
  border-radius: 6px;
  background: #ffffff;
  color: #350063;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: box-shadow 0.2s ease;
}
.newsletter-input::placeholder { color: #8b87a8; }
.newsletter-input:focus {
  box-shadow: 0 0 0 3px rgba(253, 78, 25, 0.35);
}

.newsletter-btn {
  background: #FD4E19;
  color: #ffffff;
  border: 0;
  border-radius: 6px;
  padding: 12px 20px;
  font-family: inherit;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}
.newsletter-btn:hover {
  background: #ff7a3d;
  transform: translateY(-1px);
}

.newsletter-note {
  margin-top: 14px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  max-width: 320px;
  line-height: 1.55;
}
.newsletter-note a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline;
}

.footer-col h4 {
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.3;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 8px;
  font-size: 14px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.80);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.15s ease;
}
.footer-col a:hover { color: #ffffff; }

.footer-col p {
  color: rgba(255, 255, 255, 0.80);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 6px;
}
.footer-col p strong { color: #ffffff; font-weight: 600; }

.newsletter-brand {
  margin-top: auto;
  padding-top: 36px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.newsletter-brand img {
  height: 44px;
  width: auto;
  display: block;
}

.footer-copy {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.80);
}

@media (max-width: 980px) {
  .site-footer { padding: 56px 28px 24px; }
  .site-footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .site-footer-inner > .footer-newsletter + .footer-col {
    border-left: 0;
    padding-left: 0;
    margin-left: 0;
  }
  .newsletter-form { max-width: unset; }
}

@media (max-width: 600px) {
  .site-footer-inner { grid-template-columns: 1fr; }
}
