/* ---------------------------------------------------------------------------
   cta-section.css — full-width CTA strip with two-column layout
   (eyebrow + headline on the left, card with primary action on the right).
   Used at the bottom of the landing page.
--------------------------------------------------------------------------- */

.cta-section {
  width: 100%;
  padding: 100px 40px 120px;
  position: relative;
}

/* Top hairline using the brand spectrum gradient */
.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    #E94B86 0%,
    #FF6B3D 22%,
    #FF971A 42%,
    #F6C84A 58%,
    #26D987 78%,
    #2EB8C9 100%
  );
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr minmax(0, 480px);
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.cta-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #26D987;
  margin-bottom: 20px;
}

.cta-heading {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.25;
  color: #E8EDF4;
  letter-spacing: -0.3px;
  text-wrap: balance;
}

.cta-accent {
  color: #26D987;
}

/* Card with spectrum gradient border (uses ::before + ::after technique) */
.cta-card {
  border-radius: 22px;
  padding: 40px;
  position: relative;
}

.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: linear-gradient(
    135deg,
    #E94B86 0%,
    #FF971A 40%,
    #26D987 70%,
    #2EB8C9 100%
  );
  z-index: 0;
}

.cta-card::after {
  content: '';
  position: absolute;
  inset: 1.5px;
  border-radius: 20.5px;
  background: #111D2E;
  z-index: 0;
}

.cta-card > * {
  position: relative;
  z-index: 1;
}

.cta-card-title {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: #E8EDF4;
  margin-bottom: 14px;
  line-height: 1.3;
}

.cta-card-body {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #8A9BB5;
  line-height: 1.7;
  margin-bottom: 32px;
}

.cta-btn {
  display: inline-block;
  background: #26D987;
  color: #1B212C;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 999px;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.2s ease, transform 0.15s ease;
}

.cta-btn:hover {
  background: #1fba72;
  transform: translateY(-2px);
}

/* ─── RESPONSIVE ─────────────────────────────────────────────────────────── */
/* La franja CTA pasa a 1 columna (headline arriba, card debajo) y reduce paddings. */
@media (max-width: 860px) {
  .cta-section { padding: 64px 20px 72px; }
  .cta-inner   { grid-template-columns: 1fr; gap: 32px; }
  .cta-heading { font-size: 28px; }
  .cta-card    { padding: 28px; }
}
