/* ================================================
   LP-2 — SMS + Call CTA Overrides
   ================================================ */

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.cta-group.cta-center {
  justify-content: center;
}

.cta-group .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 1 1 auto;
  min-width: 160px;
}

.cta-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.cta-large .cta-icon {
  width: 20px;
  height: 20px;
}

/* Secondary button (Call) — outlined accent */
.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid var(--color-accent);
  font-weight: 600;
  letter-spacing: 1px;
  padding: 14px 28px;
  border-radius: var(--radius);
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
  text-decoration: none;
}

.btn-secondary:hover {
  background: var(--color-accent);
  color: #fff;
}

/* Hero CTA stacks better on small screens */
@media (max-width: 480px) {
  .cta-group {
    flex-direction: column;
  }

  .cta-group .btn {
    width: 100%;
  }
}
