.site-footer {
  --footer-accent: #feaf39;
  --footer-accent-strong: #feaf39;
  --footer-surface: rgba(11, 11, 11, 0.96);
  --footer-surface-border: rgb(254 175 57 / 36%);
  --footer-divider-color: #feaf39;
  --footer-text-main: #ffffff;
  --footer-text-muted: #ffffff;
  overflow: hidden;
  color: var(--footer-text-main);
  background: black;
  border-top: 4px solid rgb(254 175 57);
  hyphens: none;
  word-break: normal;
  overflow-wrap: break-word;
}

.site-footer::before,
.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.site-footer::before {
  opacity: 1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent 24%),
    linear-gradient(90deg, rgba(254, 175, 57, 0.08), rgba(254, 175, 57, 0.02) 18%, transparent 38%, transparent 62%, rgba(254, 175, 57, 0.02) 82%, rgba(254, 175, 57, 0.08));
}

.site-footer::after {
  display: none;
}

.site-footer__container {
  position: relative;
  z-index: 1;
  padding-top: 4.9rem;
  padding-bottom: 5.4rem;
}

.site-footer__surface {
  position: relative;
  padding: 1.25rem 0 0;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: stretch;
}

.site-footer__section {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1rem 1.05rem 0.92rem;
  border-radius: 0.95rem;
  border: 1px solid var(--footer-surface-border);
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.98), rgba(11, 11, 11, 0.95));
  box-shadow: none;
}

.site-footer__section::after {
  content: "";
  position: absolute;
  inset: auto 1.15rem -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(254, 175, 57, 0.22), transparent);
  opacity: 0.4;
}

.site-footer__accordion {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.site-footer__summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  cursor: pointer;
}

.site-footer__summary::-webkit-details-marker {
  display: none;
}

.site-footer__summary::after {
  content: "+";
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(254, 175, 57, 0.22);
  color: var(--footer-accent);
  background: rgba(254, 175, 57, 0.06);
  font-size: 1rem;
  line-height: 1;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.site-footer__accordion[open] .site-footer__summary::after {
  transform: rotate(45deg);
  background: rgba(254, 175, 57, 0.1);
  border-color: rgba(254, 175, 57, 0.32);
}

.site-footer__heading,
.site-footer .footer-heading {
  margin: 0;
  color: var(--footer-accent-strong);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.site-footer__panel {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding-top: 0.55rem;
}

.site-footer .footer-links,
.site-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer .footer-links li {
  margin-bottom: 0;
}

.site-footer .footer-links a,
.site-footer__button-link {
  display: inline-flex;
  align-items: center;
  width: 100%;
  min-height: 1.9rem;
  padding: 0.08rem 0;
  color: var(--footer-text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.25;
  transition: color 0.2s ease, transform 0.2s ease;
}

.site-footer__button-link {
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
}

.site-footer .footer-links a:hover,
.site-footer__button-link:hover {
  color: #ffffff;
  transform: translateX(3px);
}

.site-footer .footer-links a:hover::before,
.site-footer__button-link:hover::before {
  opacity: 1;
}

.site-footer .footer-links a::before,
.site-footer__button-link::before {
  content: "";
  width: 0.32rem;
  height: 0.32rem;
  margin-right: 0.65rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--footer-accent), #f59e0b);
  opacity: 0.72;
  transition: opacity 0.25s ease;
  flex-shrink: 0;
}

.site-footer__cta-group,
.site-footer .footer-cta-group {
  margin-top: auto;
  padding-top: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.site-footer__cta,
.site-footer .footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  min-height: 2.8rem;
  padding: 0.72rem 0.9rem;
  border-radius: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(27, 27, 27, 0.98), rgba(17, 17, 17, 0.98));
  color: #f7f3ea;
  font-weight: 700;
  font-size: 0.94rem;
  text-decoration: none;
  box-shadow: none;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.site-footer__cta:hover,
.site-footer .footer-cta:hover {
  color: #fff8ec;
  transform: translateY(-1px);
  border-color: rgba(254, 175, 57, 0.26);
  background: linear-gradient(180deg, rgba(30, 30, 30, 0.98), rgba(18, 18, 18, 0.98));
}

.site-footer__cta--objection {
  border-color: rgba(254, 175, 57, 0.16);
  background: linear-gradient(180deg, rgba(28, 22, 14, 0.98), rgba(18, 16, 12, 0.98));
  color: #f6d7a0;
}

.site-footer__cta--objection:hover {
  border-color: rgba(254, 175, 57, 0.24);
  background: linear-gradient(180deg, rgba(31, 24, 15, 0.98), rgba(20, 17, 12, 0.98));
}

.site-footer__cta-icon {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(254, 175, 57, 0.08);
  color: var(--footer-accent);
  flex-shrink: 0;
}

.site-footer__cta-label {
  display: flex;
  align-items: center;
  line-height: 1.25;
}

.site-footer__divider,
.site-footer .footer-divider {
  margin: 1.4rem 0 1.05rem;
  border: 0;
  border-top: 1px solid var(--footer-divider-color);
}

.site-footer__bottom {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: center;
}

.site-footer__social,
.site-footer__payments {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.site-footer__social {
  justify-content: center;
}

.site-footer__social-link {
  width: 2.55rem;
  height: 2.55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(254, 175, 57, 0.3);
  background: rgba(255, 255, 255, 0.02);
  color: var(--footer-accent-strong);
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.site-footer__social-link:hover {
  color: #fff7ed;
  border-color: rgba(254, 175, 57, 0.52);
  transform: translateY(-1px);
}

.site-footer__social-link i {
  font-size: 1.05rem;
}

.site-footer__meta,
.site-footer .footer-copyright {
  margin: 0;
  text-align: center;
  color: rgba(226, 226, 224, 0.74);
  font-size: 0.9rem;
}

.site-footer__payments {
  justify-content: center;
  flex-wrap: wrap;
}

.site-footer__payment {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  min-width: 5rem;
  padding: 0.32rem 0.4rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(248, 250, 252, 0.92);
  box-shadow: none;
}

.site-footer__payment--light {
  border-color: rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(245, 247, 250, 0.96), rgba(226, 231, 237, 0.92));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55), 0 8px 20px rgba(0, 0, 0, 0.18);
}

.site-footer__payment--light .site-footer__payment-image {
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.12));
}

.site-footer__payment-image {
  display: block;
  width: auto;
  max-width: 100%;
  height: 2.25rem;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.18));
}

.site-footer .footer-links a:focus-visible,
.site-footer__button-link:focus-visible,
.site-footer__social-link:focus-visible,
.site-footer__cta:focus-visible,
.site-footer__summary:focus-visible {
  outline: 2px solid var(--footer-accent);
  outline-offset: 4px;
}

@media (min-width: 576px) {
  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 992px) {
  .site-footer__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.1rem;
  }

  .site-footer__bottom {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  }

  .site-footer__social {
    justify-content: flex-start;
  }

  .site-footer__payments {
    justify-content: flex-end;
  }

  .site-footer__summary {
    cursor: default;
  }

  .site-footer__summary::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .site-footer {
    margin-top: 4.25rem;
  }

  .site-footer__container {
    padding-top: 1.4rem;
    padding-bottom: 6rem;
  }

  .site-footer__section {
    padding: 0.92rem 0.92rem 0.86rem;
    border-radius: 0.9rem;
  }

  .site-footer__heading,
  .site-footer .footer-heading {
    font-size: 1.12rem;
  }

  .site-footer__panel {
    padding-top: 0.55rem;
  }

  .site-footer .footer-links a,
  .site-footer__button-link,
  .site-footer__cta {
    min-height: 2.8rem;
  }

  .site-footer__payment {
    flex: 1 1 auto;
    min-width: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-footer .footer-links a,
  .site-footer__button-link,
  .site-footer__social-link,
  .site-footer__cta,
  .site-footer__summary::after {
    transition: none;
  }
}
