.lw-section--final-cta {
  padding-top: 180px;
  padding-bottom: 180px;
  background: radial-gradient(
      circle at top,
      rgba(20,184,166,0.08),
      transparent 40%
    ),
    linear-gradient(180deg, #0b1628, #0e1c30);
}

.lw-footer__inner {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.lw-final-cta {
  padding: 130px 38px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    radial-gradient(circle at top center, rgba(20, 184, 166, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.02)),
    #13233a;
  box-shadow: var(--lw-shadow);
}

.footer-back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  color: #94a3b8;
  text-decoration: none;
}

.footer-back-to-top:hover {
  color: #cbd5e1;
  text-decoration: none;
}

.footer-arrow-up {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  opacity: 0.6;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer-back-to-top:hover .footer-arrow-up {
  transform: translateY(-2px);
  opacity: 1;
}

.lw-final-cta h2 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
  margin: 0 0 16px;
  max-width: 920px;
  margin-inline: auto;
}

.lw-final-cta p {
  max-width: 820px;
  margin: 0 auto 26px;
  color: var(--lw-text-soft);
  line-height: 1.85;
  font-size: 1.05rem;
}

.lw-final-cta__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.lw-final-cta__meta {
  margin-top: 18px;
  color: var(--lw-text-dim);
  line-height: 1.7;
  font-size: 0.94rem;
}

.lw-footer {
  width: 100%;
  padding: 32px 0 42px;
  background: #081220;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.lw-footer__nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 23px;
}

.lw-footer__nav a {
  text-decoration: none;
  color: var(--lw-text-soft);
  font-size: 0.95rem;
}

.lw-footer__nav a:hover {
  color: var(--lw-text);
}

.lw-footer__divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 22px 0 28px;
}

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

.lw-footer__logo {
  font-size: 1.55rem;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.lw-footer__desc {
  color: var(--lw-text-soft);
  max-width: 420px;
  line-height: 1.65;
  font-size: 0.96rem;
}

.lw-footer__meta {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  color: var(--lw-text-dim);
}

.lw-footer__meta span {
  display: block;
  margin-top: 4px;
}

.lw-footer__copy {
  font-size: 0.95rem;
  color: var(--lw-text);
}

.lw-footer__tag {
  font-size: 0.95rem;
  color: var(--lw-text-soft);
}

.lw-footer__social {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 12px;
}

.lw-footer__social a {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  color: #9ca3af;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.15s ease;
  opacity: 0.8;
}

.lw-footer__social a:hover {
  color: white;
  background: rgba(20,184,166,0.15);
  border-color: rgba(20,184,166,0.4);
  opacity: 1;
}

.lw-footer__social svg {
  width: 18px;
  height: 18px;
}

.lw-footer__status {
  margin-top: 6px;
  font-size: 0.88rem;
  color: var(--lw-text-dim);
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.lw-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  display: inline-block;
}

.lw-footer-sep {
  opacity: 0.5;
}

.fb-icon svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 768px) {

  .lw-footer__inner {
    width: calc(100% - 32px);
    margin: 0 auto;
  }

  .lw-footer__nav {
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.85rem;
  }

  .lw-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .lw-footer__brand {
    width: 100%;
  }

  .lw-footer__meta {
    width: 100%;
    text-align: left;
    align-items: flex-start;
  }

  .lw-footer__social {
    margin-top: 8px;
  }

  .lw-footer__status {
    flex-wrap: wrap;
    gap: 6px;
    font-size: 0.8rem;
  }

}