/* ====== Header CTA Button ====== */
.lp-header-cta {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  color: #fff;
  background: linear-gradient(to right, #ef9719, #FF512F);
  border: none;
  border-radius: 10px;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.lp-header-cta:hover {
  background: linear-gradient(to right, #d98816, #e5482a);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255,81,47,0.3);
}
@media (max-width: 768px) {
  .lp-header-cta { display: none; }
}

/* ====== CTA Banner ====== */
.mc-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.mc-cta-title {
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: -0.5px;
  line-height: 1.15;
  color: var(--text);
}

.mc-cta-subtitle {
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.5;
  margin-top: 4px;
  max-width: 560px;
}
.mc-cta-content {
  display: flex;
  align-items: center;
  gap: 20px;
}
.mc-cta-text { flex: 1; }

.mc-cta-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mc-cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  color: var(--accent-green);
  background: transparent;
  border: 2px solid var(--accent-green);
  border-radius: 10px;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.mc-cta-btn:hover {
  background: var(--accent-green);
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(89,233,0,0.25);
}
.mc-cta-btn-orange {
  background: linear-gradient(to right, #ef9719, #FF512F);
  color: #fff;
  border: none;
}
.mc-cta-btn-orange:hover {
  background: linear-gradient(to right, #d98816, #e5482a);
  color: #fff;
  box-shadow: 0 4px 16px rgba(255,81,47,0.35);
}

/* ====== CTA Bottom Zone ====== */
.mc-bottom-zone {
  max-width: 1280px;
  margin: 48px auto 32px;
  padding: 0 24px;
}
.mc-bottom-zone .mc-cta {
  background: linear-gradient(135deg, rgba(6,34,55,0.25) 0%, rgba(12,99,255,0.04) 50%, rgba(6,34,55,0.25) 100%);
  border: 1px solid var(--accent-green, #59e900);
  border-radius: 12px;
  padding: 40px 48px !important;
  flex-wrap: nowrap;
}
.mc-divider-green {
  border: none;
  border-top: 1px solid var(--accent-green);
}

/* ====== CTA Responsive ====== */
@media (max-width: 1024px) {
  .mc-cta-title { font-size: 1.5rem; }
  .mc-cta-subtitle { font-size: 0.85rem; }
  .mc-cta-btn { padding: 10px 20px; font-size: 0.88rem; }
}
@media (max-width: 768px) {
  .mc-cta { flex-direction: column; align-items: center; text-align: center; }
  .mc-cta-subtitle { margin-left: auto; margin-right: auto; }
  .mc-cta-actions { justify-content: center; }
  .mc-cta-content { flex-direction: column; }
}
