.cta-section {
  position: relative;
  /* cta-bg.png = the dark textured banner from the screenshot */
  background:
    linear-gradient(to bottom,
      rgba(0,0,0,0.55) 0%,
      rgba(0,0,0,0.65) 100%),
    url('../images/cta-bg.png') center / cover no-repeat;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  text-align: center;
  padding: 44px var(--space-lg);
  overflow: hidden;
}

/* Subtle green radial glow at bottom center */
.cta-section::before {
  content: '';
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 160px;
  background: radial-gradient(ellipse at 50% 100%, rgba(56,142,60,0.22) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
  letter-spacing: 0.3px;
}

.cta-section__title .cta-brand {
  color: var(--color-green);
}

.cta-section__btn {
  position: relative;
  z-index: 1;
  background: var(--color-green-dark);
  color: #fff;
  border: 1px solid var(--color-green);
  border-radius: var(--radius-sm);
  padding: 12px 30px;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-body);
  letter-spacing: 0.4px;
  cursor: pointer;
  transition:
    background var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
  /* inset highlight for 3-D pill feel matching screenshot */
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    0 4px 14px rgba(0,0,0,0.5);
}

.cta-section__btn:hover {
  background: var(--color-green);
  box-shadow:
    var(--shadow-green),
    inset 0 1px 0 rgba(255,255,255,0.15);
  transform: translateY(-2px);
}

.cta-section__btn:active { transform: translateY(0); }


/* ── Footer ── */
.footer {
  background: #080808;
  border-top: 1px solid var(--color-border);
  padding: 16px var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer__links {
  display: flex;
  align-items: center;
}

.footer__link {
  color: var(--color-text-muted);
  font-size: 12px;
  padding: 0 13px;
  border-right: 1px solid var(--color-border);
  transition: color var(--transition);
}

.footer__link:first-child { padding-left: 0; }
.footer__link:last-child  { border-right: none; }
.footer__link:hover       { color: var(--color-green); }

.footer__copy {
  font-size: 12px;
  color: var(--color-text-muted);
}
