﻿/* =====================================================================
   FINAL CTA - massive, high-contrast
   ===================================================================== */
.section--cta {
  padding: 18px 0 24px;
}
.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px 48px;
  opacity: 1 !important;
  transform: none !important;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  border: none;
  border-radius: var(--radius-lg);
  padding: 48px 56px;
  box-shadow: 0 20px 50px -15px rgba(47, 133, 90, .3);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(255, 255, 255, .12), transparent 50%),
    radial-gradient(ellipse 40% 60% at 10% 90%, rgba(255, 255, 255, .06), transparent 40%);
  pointer-events: none;
}
.cta-card::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, .06) 0%, transparent 50%);
  animation: ctaShine 8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes ctaShine {
  0%, 100% { transform: translate(-30%, -30%); }
  50% { transform: translate(30%, 30%); }
}
.cta-card__text { min-width: 0; max-width: 48ch; position: relative; z-index: 1; }
.cta-card h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  margin-bottom: 12px;
  letter-spacing: -.03em;
  color: #fff;
}
.cta-card p { color: rgba(255, 255, 255, .85); font-size: 1.08rem; line-height: 1.6; }
.cta-card__actions { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; flex: none; position: relative; z-index: 1; }
.cta-card__note { color: rgba(255, 255, 255, .7); font-size: .88rem; }

.cta-card .btn--primary {
  background: #fff;
  color: var(--accent);
  font-weight: 700;
}
.cta-card .btn--primary:hover {
  background: #f8f8f8;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .15);
}

@media (max-width: 620px) {
  .cta-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 24px;
  }
  .cta-card__actions { align-items: stretch; width: 100%; }
  .cta-card__actions .btn { width: 100%; }
  .cta-card__note { text-align: center; }
}

/* =====================================================================
   FOOTER
   ===================================================================== */
.footer {
  background: transparent;
  border-top: 1px solid var(--border);
  padding: 20px 0 24px;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 760px) {
  .footer__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer__nav {
    justify-content: center;
  }
  .footer__social {
    justify-content: center;
  }
}
.brand--footer .brand__word { font-size: 1.1rem; }
.footer__nav { display: flex; flex-wrap: wrap; gap: 22px; }
.footer__nav a { color: var(--muted); font-size: .92rem; transition: color .15s; }
.footer__nav a:hover { color: var(--text); }
.footer__copy { color: var(--muted); font-size: .9rem; }

/* Footer social icons */
.footer__social {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--muted);
  transition: all .2s var(--ease);
}
.footer__social-link:hover {
  color: var(--accent-ink);
  border-color: var(--green-line);
  background: var(--green-tint);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.footer__social-link svg {
  width: 20px;
  height: 20px;
}

