/* FTTL CTA Download — Frontend */

.fttl-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--cta-bg1, #1a7a3c), var(--cta-bg2, #27ae60));
  border: var(--cta-border, none);
  color: var(--cta-color, #fff);
  margin: 24px 0;
  box-shadow: 0 4px 18px rgba(0,0,0,.12);
  flex-wrap: wrap;
  font-family: 'Be Vietnam Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  text-decoration: none;
  box-sizing: border-box;
}

.fttl-cta__icon {
  font-size: 44px;
  line-height: 1;
  flex-shrink: 0;
}

.fttl-cta__body {
  flex: 1;
  min-width: 160px;
}

.fttl-cta__title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--cta-color, #fff);
  margin-bottom: 4px;
}

.fttl-cta__subtitle {
  font-size: 13px;
  opacity: .88;
  line-height: 1.5;
  color: var(--cta-color, #fff);
}

.fttl-cta__action {
  flex-shrink: 0;
}

.fttl-cta__btn {
  display: inline-block;
  background: var(--cta-btn-bg, #fff);
  color: var(--cta-btn-color, #1a7a3c) !important;
  text-decoration: none !important;
  font-size: 14px;
  font-weight: 700;
  padding: 11px 22px;
  border-radius: 50px;
  white-space: nowrap;
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
  cursor: pointer;
}

.fttl-cta__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,.2);
  opacity: .93;
}

.fttl-cta__btn--disabled {
  opacity: .6;
  cursor: default;
}
.fttl-cta__btn--disabled:hover {
  transform: none;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
  opacity: .6;
}

/* Responsive */
@media (max-width: 540px) {
  .fttl-cta {
    flex-direction: column;
    text-align: center;
    padding: 18px 16px;
    gap: 12px;
  }
  .fttl-cta__action { width: 100%; text-align: center; }
  .fttl-cta__btn { width: 100%; display: block; text-align: center; }
}
