/* ===================================================================
   FINAL CTA SECTION - Professional, brand-aligned conversion zone
   =================================================================== */

.cta-section {
  position: relative;
  /* Sophisticated gradient: lighter top to darker bottom */
  background: linear-gradient(
    180deg,
    rgba(var(--landing-gradient-primary-rgb), 0.08) 0%,
    rgba(var(--landing-gradient-info-rgb), 0.14) 40%,
    rgba(var(--landing-gradient-secondary-rgb), 0.18) 100%
  );
  /* Subtle radial overlays for depth */
  background-image: 
    linear-gradient(
      180deg,
      rgba(var(--landing-gradient-primary-rgb), 0.08) 0%,
      rgba(var(--landing-gradient-info-rgb), 0.14) 40%,
      rgba(var(--landing-gradient-secondary-rgb), 0.18) 100%
    ),
    radial-gradient(ellipse at top, rgba(var(--landing-gradient-primary-rgb), 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at bottom, rgba(var(--landing-gradient-secondary-rgb), 0.08) 0%, transparent 60%);
  
  /* Section separation */
  border-bottom: 3px solid rgba(var(--landing-gradient-primary-rgb), 0.2);
  box-shadow: 0 8px 32px rgba(var(--landing-gradient-primary-rgb), 0.1);
  
  padding: 6rem 0 5rem;
  overflow: hidden;
}

[data-bs-theme="dark"] .cta-section {
  background: linear-gradient(
    180deg,
    rgba(var(--landing-gradient-primary-rgb), 0.12) 0%,
    rgba(var(--landing-gradient-info-rgb), 0.18) 40%,
    rgba(var(--landing-gradient-secondary-rgb), 0.22) 100%
  );
  border-bottom-color: rgba(var(--landing-gradient-primary-rgb), 0.3);
}

/* CTA Header */
.cta-header {
  max-width: 800px;
  margin: 0 auto;
}

.cta-eyebrow {
  display: inline-block;
}

.cta-badge {
  background: linear-gradient(135deg, var(--sa-primary-600), var(--sa-secondary-600));
  color: white;
  padding: 0.5rem 1.25rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  box-shadow: var(--shadow-m);
  text-transform: none;
}

.cta-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--bs-body-color);
  margin-bottom: 1.5rem;
}

.cta-highlight {
  color: var(--sa-primary-600);
  font-weight: 800;
}

.cta-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--bs-body-color);
  opacity: 0.85;
  max-width: 680px;
  font-weight: 400;
  overflow-wrap: anywhere;
}

[data-bs-theme="dark"] .cta-subtitle {
  opacity: 0.8;
}

/* Trust Signals */
.cta-trust-signals {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.75rem 1.25rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-s);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(var(--landing-gradient-primary-rgb), 0.1);
}

[data-bs-theme="dark"] .trust-item {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(var(--landing-gradient-primary-rgb), 0.2);
}

.trust-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-m);
}

.trust-icon {
  color: var(--bs-success);
  font-size: 1.125rem;
  flex-shrink: 0;
}

.trust-text {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--bs-body-color);
  white-space: nowrap;
}

/* CTA Form */
.cta-form-wrapper {
  max-width: 700px;
}

.cta-form-container {
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-l);
  padding: 2rem;
  box-shadow: var(--shadow-l);
  border: 1px solid rgba(var(--landing-gradient-primary-rgb), 0.12);
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-bs-theme="dark"] .cta-form-container {
  background: rgba(30, 41, 59, 0.85);
  border-color: rgba(var(--landing-gradient-primary-rgb), 0.25);
}

.cta-form-container:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.cta-form-inner {
  width: 100%;
}

/* Value Tiers Cards */
.cta-value-tiers {
  max-width: 1000px;
  margin: 0 auto;
}

.cta-value-tiers .row {
  align-items: stretch;
}

.tier-card {
  background: linear-gradient(160deg, color-mix(in srgb, var(--surface-0, #ffffff) 88%, var(--surface-1) 12%) 0%, var(--surface-1) 100%);
  border-radius: var(--radius-l);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid rgba(var(--landing-gradient-primary-rgb), 0.14);
  box-shadow: var(--shadow-s);
  transition: border-color 0.2s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.2s cubic-bezier(0.22, 1, 0.36, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
}

.tier-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.875rem;
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
  background: rgba(var(--landing-gradient-primary-rgb), 0.08);
  color: var(--sa-primary-700);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

[data-bs-theme="dark"] .tier-card {
  background: linear-gradient(180deg, color-mix(in srgb, var(--surface-1) 88%, white 12%) 0%, var(--surface-2) 100%);
  border-color: rgba(var(--landing-gradient-primary-rgb), 0.25);
}

[data-bs-theme="dark"] .tier-step {
  background: rgba(var(--landing-gradient-primary-rgb), 0.18);
  color: var(--sa-primary-100);
}

.tier-card:hover {
  border-color: rgba(var(--landing-gradient-primary-rgb), 0.3);
  box-shadow: var(--shadow-m);
}

.tier-card.tier-premium {
  text-align: left;
  align-items: flex-start;
  padding: 2.25rem 2rem;
  background: linear-gradient(160deg, color-mix(in srgb, var(--sa-primary-600) 10%, var(--surface-0, #ffffff)) 0%, color-mix(in srgb, var(--sa-secondary-600) 8%, var(--surface-1)) 100%);
}

[data-bs-theme="dark"] .tier-card.tier-premium {
  background: linear-gradient(180deg, color-mix(in srgb, var(--sa-primary-600) 10%, var(--surface-1)) 0%, color-mix(in srgb, var(--sa-secondary-600) 8%, var(--surface-2)) 100%);
}

.tier-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.75rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tier-card.tier-premium .tier-icon {
  margin: 0 0 1.25rem;
}

.tier-anonymous .tier-icon {
  background: linear-gradient(135deg, rgba(var(--landing-gradient-info-rgb), 0.15), rgba(var(--landing-gradient-info-rgb), 0.25));
  color: var(--sa-primary-600);
}

.tier-free .tier-icon {
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.15), rgba(5, 150, 105, 0.25));
  color: var(--bs-success);
}

.tier-premium .tier-icon {
  background: linear-gradient(135deg, var(--sa-primary-600), var(--sa-secondary-600));
  color: white;
}

.tier-card:hover .tier-icon {
  transform: none;
}

.tier-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--bs-body-color);
  margin-bottom: 0.75rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.tier-description {
  font-size: 0.9375rem;
  color: var(--bs-body-color);
  opacity: 0.8;
  line-height: 1.5;
  margin-bottom: 1rem;
  overflow-wrap: anywhere;
}

.tier-badge {
  margin-top: auto;
  width: 100%;
  display: flex;
  justify-content: center;
}

.tier-card.tier-premium .tier-badge {
  justify-content: flex-start;
}

.tier-badge .badge {
  display: block;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
  text-align: center;
  line-height: 1.4;
}

.tier-offer-badge {
  padding: 0.625rem 0.875rem;
  border: 1px solid color-mix(in srgb, var(--sa-primary-600) 18%, white 82%);
  background: linear-gradient(180deg, color-mix(in srgb, var(--sa-primary-600) 8%, white 92%) 0%, color-mix(in srgb, var(--sa-secondary-600) 8%, white 92%) 100%);
  color: var(--sa-primary-700);
  font-size: 0.875rem;
  font-weight: 700;
}

[data-bs-theme="dark"] .tier-offer-badge {
  border-color: rgba(var(--landing-gradient-primary-rgb), 0.3);
  background: linear-gradient(180deg, color-mix(in srgb, var(--sa-primary-600) 18%, var(--surface-1)) 0%, color-mix(in srgb, var(--sa-secondary-600) 18%, var(--surface-2)) 100%);
  color: var(--sa-primary-100);
}

.tier-link {
  color: var(--sa-primary-600);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: color 0.18s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.18s cubic-bezier(0.22, 1, 0.36, 1), transform 0.18s cubic-bezier(0.22, 1, 0.36, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  min-height: 2.75rem;
  padding: 0.625rem 0.875rem;
  border-radius: 999px;
}

.tier-link:hover {
  background: rgba(var(--landing-gradient-primary-rgb), 0.08);
  color: var(--sa-primary-700);
  transform: translateX(2px);
}

.tier-link:focus-visible {
  outline: none;
  background: rgba(var(--landing-gradient-primary-rgb), 0.1);
  box-shadow: 0 0 0 3px rgba(248, 250, 252, 0.92), 0 0 0 6px rgba(var(--landing-gradient-primary-rgb), 0.2);
}

[data-bs-theme="dark"] .tier-link {
  color: var(--sa-primary-100);
}

[data-bs-theme="dark"] .tier-link:hover {
  color: var(--sa-primary-100);
  opacity: 0.8;
}

/* CTA Actions */
.cta-actions {
  max-width: 700px;
  margin: 0 auto;
}

/* Primary CTA Button */
.cta-primary-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--bs-white);
  background: linear-gradient(135deg, var(--sa-secondary-600) 0%, var(--sa-primary-600) 100%);
  border: 1px solid color-mix(in srgb, var(--sa-secondary-700) 55%, var(--sa-primary-700) 45%);
  border-radius: var(--radius-m);
  box-shadow:
    0 10px 20px rgba(var(--landing-gradient-primary-rgb), 0.18),
    0 4px 10px rgba(var(--landing-gradient-secondary-rgb), 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    inset 0 -3px 0 rgba(3, 105, 161, 0.3);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
  overflow: hidden;
  text-decoration: none;
}

.cta-btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

.cta-primary-btn::before {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--radius-m) - 1px);
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0) 42%),
    linear-gradient(180deg, rgba(2, 132, 199, 0) 58%, rgba(2, 132, 199, 0.2) 100%);
}

.cta-primary-btn:hover {
  background: linear-gradient(135deg, var(--sa-secondary-700) 0%, var(--sa-primary-700) 100%);
  color: var(--bs-white);
  border-color: color-mix(in srgb, var(--sa-secondary-700) 40%, var(--sa-primary-700) 60%);
  transform: translateY(-1px);
  box-shadow:
    0 14px 28px rgba(var(--landing-gradient-primary-rgb), 0.22),
    0 8px 18px rgba(var(--landing-gradient-secondary-rgb), 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    inset 0 -3px 0 rgba(3, 105, 161, 0.34);
}

.cta-primary-btn:active {
  transform: translateY(1px);
  box-shadow:
    0 6px 14px rgba(var(--landing-gradient-primary-rgb), 0.18),
    0 3px 8px rgba(var(--landing-gradient-secondary-rgb), 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.26),
    inset 0 -2px 0 rgba(3, 105, 161, 0.24);
}

.cta-primary-btn:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(248, 250, 252, 0.92),
    0 0 0 6px rgba(37, 99, 235, 0.3),
    0 10px 20px rgba(37, 99, 235, 0.18),
    0 4px 10px rgba(16, 185, 129, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    inset 0 -3px 0 rgba(3, 105, 161, 0.3);
}

/* Secondary CTA Button */
.cta-secondary-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--bs-body-color);
  background: linear-gradient(180deg, color-mix(in srgb, var(--surface-0, #ffffff) 88%, var(--surface-1) 12%) 0%, var(--surface-2) 100%);
  border: 1px solid rgba(100, 116, 139, 0.45);
  border-radius: var(--radius-m);
  box-shadow:
    0 10px 18px rgba(148, 163, 184, 0.18),
    0 3px 8px rgba(148, 163, 184, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    inset 0 -3px 0 rgba(148, 163, 184, 0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
  text-decoration: none;
}

.cta-secondary-btn::before {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--radius-m) - 1px);
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 40%),
    linear-gradient(180deg, rgba(226, 232, 240, 0) 52%, rgba(203, 213, 225, 0.42) 100%);
}

.cta-secondary-btn:hover {
  color: var(--bs-body-color);
  background: linear-gradient(180deg, color-mix(in srgb, var(--surface-0, #ffffff) 92%, var(--surface-1) 8%) 0%, color-mix(in srgb, var(--surface-2) 84%, white 16%) 100%);
  border-color: rgba(71, 85, 105, 0.52);
  transform: translateY(-1px);
  box-shadow:
    0 14px 24px rgba(148, 163, 184, 0.22),
    0 6px 12px rgba(148, 163, 184, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 0 -3px 0 rgba(148, 163, 184, 0.22);
}

.cta-secondary-btn:active {
  transform: translateY(1px);
  box-shadow:
    0 6px 12px rgba(148, 163, 184, 0.16),
    0 2px 6px rgba(148, 163, 184, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    inset 0 -2px 0 rgba(148, 163, 184, 0.18);
}

.cta-secondary-btn:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(248, 250, 252, 0.92),
    0 0 0 6px rgba(100, 116, 139, 0.2),
    0 10px 18px rgba(148, 163, 184, 0.18),
    0 3px 8px rgba(148, 163, 184, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    inset 0 -3px 0 rgba(148, 163, 184, 0.18);
}

[data-bs-theme="dark"] .cta-primary-btn {
  background:
    linear-gradient(135deg, rgba(16, 185, 129, 0.7) 0%, rgba(37, 99, 235, 0.6) 100%),
    linear-gradient(180deg, var(--surface-1) 0%, var(--surface-2) 100%);
  border-color: rgba(8, 145, 178, 0.45);
  box-shadow:
    0 10px 22px rgba(2, 6, 23, 0.45),
    0 4px 12px rgba(37, 99, 235, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 -3px 0 rgba(2, 132, 199, 0.18);
}

[data-bs-theme="dark"] .cta-primary-btn::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 44%),
    linear-gradient(180deg, rgba(2, 132, 199, 0) 58%, rgba(2, 132, 199, 0.16) 100%);
}

[data-bs-theme="dark"] .cta-primary-btn:hover {
  background:
    linear-gradient(135deg, rgba(16, 185, 129, 0.7) 0%, rgba(29, 78, 216, 0.6) 100%),
    linear-gradient(180deg, color-mix(in srgb, var(--surface-1) 88%, white 12%) 0%, var(--surface-2) 100%);
  border-color: rgba(56, 189, 248, 0.5);
  box-shadow:
    0 14px 28px rgba(2, 6, 23, 0.5),
    0 6px 14px rgba(37, 99, 235, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -3px 0 rgba(2, 132, 199, 0.22);
}

[data-bs-theme="dark"] .cta-primary-btn:active {
  box-shadow:
    0 8px 16px rgba(2, 6, 23, 0.42),
    0 3px 8px rgba(37, 99, 235, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -2px 0 rgba(2, 132, 199, 0.18);
}

[data-bs-theme="dark"] .cta-primary-btn:focus-visible {
  box-shadow:
    0 0 0 3px rgba(15, 23, 42, 0.92),
    0 0 0 6px rgba(37, 99, 235, 0.2),
    0 10px 22px rgba(2, 6, 23, 0.45),
    0 4px 12px rgba(37, 99, 235, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 -3px 0 rgba(2, 132, 199, 0.18);
}

[data-bs-theme="dark"] .cta-secondary-btn {
  background: linear-gradient(180deg, var(--surface-1) 0%, var(--surface-2) 100%);
  color: #e2e8f0;
  border-color: rgba(148, 163, 184, 0.28);
  box-shadow:
    0 10px 20px rgba(2, 6, 23, 0.42),
    0 3px 8px rgba(15, 23, 42, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -3px 0 rgba(15, 23, 42, 0.3);
}

[data-bs-theme="dark"] .cta-secondary-btn::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 42%),
    linear-gradient(180deg, rgba(15, 23, 42, 0) 56%, rgba(15, 23, 42, 0.24) 100%);
}

[data-bs-theme="dark"] .cta-secondary-btn:hover {
  color: #f8fafc;
  background: linear-gradient(180deg, color-mix(in srgb, var(--surface-1) 90%, white 10%) 0%, var(--surface-2) 100%);
  border-color: rgba(148, 163, 184, 0.38);
  box-shadow:
    0 14px 24px rgba(2, 6, 23, 0.48),
    0 5px 12px rgba(15, 23, 42, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -3px 0 rgba(15, 23, 42, 0.34);
}

[data-bs-theme="dark"] .cta-secondary-btn:active {
  box-shadow:
    0 8px 16px rgba(2, 6, 23, 0.38),
    0 2px 6px rgba(15, 23, 42, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -2px 0 rgba(15, 23, 42, 0.3);
}

[data-bs-theme="dark"] .cta-secondary-btn:focus-visible {
  box-shadow:
    0 0 0 3px rgba(15, 23, 42, 0.92),
    0 0 0 6px rgba(96, 165, 250, 0.12),
    0 10px 20px rgba(2, 6, 23, 0.42),
    0 3px 8px rgba(15, 23, 42, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -3px 0 rgba(15, 23, 42, 0.3);
}

.btn-arrow {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-primary-btn:hover .btn-arrow,
.cta-secondary-btn:hover .btn-arrow,
.tier-link:hover i {
  transform: translateX(4px);
}

/* CTA Feature List */
.cta-features {
  max-width: 800px;
  margin: 0 auto;
}

.cta-features-intro {
  font-size: 0.9375rem;
  color: var(--bs-body-color);
  opacity: 0.75;
  font-weight: 500;
}

.cta-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.875rem;
  text-align: left;
}

.cta-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  min-height: 3rem;
  padding: 0.875rem 1rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(var(--landing-gradient-primary-rgb), 0.15);
  border-radius: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--bs-body-color);
  line-height: 1.45;
}

[data-bs-theme="dark"] .cta-feature-item {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(var(--landing-gradient-primary-rgb), 0.25);
}

.cta-feature-item i {
  flex-shrink: 0;
  color: var(--sa-primary-600);
  font-size: 1rem;
}

[data-bs-theme="dark"] .cta-feature-item i {
  color: var(--sa-primary-100);
}

.cta-feature-item strong {
  font-weight: 700;
}

/* CTA Footer */
.cta-footer {
  max-width: 600px;
  margin: 0 auto;
}

.cta-footer-pricing {
  font-size: 0.9375rem;
  color: var(--bs-body-color);
  opacity: 0.75;
  font-weight: 500;
  overflow-wrap: anywhere;
}

.cta-footer-promo {
  display: flex;
  justify-content: center;
}

.cta-footer-meta {
  font-size: 0.875rem;
  color: var(--bs-body-color);
  opacity: 0.78;
  font-weight: 500;
}

.cta-promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.45rem 0.75rem;
  border: 1px solid color-mix(in srgb, var(--bs-warning) 32%, white 68%);
  background: linear-gradient(180deg, color-mix(in srgb, var(--bs-warning) 14%, white 86%) 0%, color-mix(in srgb, var(--bs-warning) 22%, white 78%) 100%);
  color: #9a3412;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.3;
  text-wrap: balance;
}

.cta-promo-badge strong,
.cta-promo-badge i {
  color: inherit;
}

[data-bs-theme="dark"] .cta-promo-badge {
  border-color: color-mix(in srgb, var(--bs-warning) 38%, transparent);
  background: linear-gradient(180deg, color-mix(in srgb, var(--bs-warning) 18%, var(--surface-1)) 0%, color-mix(in srgb, var(--bs-warning) 24%, var(--surface-2)) 100%);
  color: #fbbf24;
}

.cta-footer-link {
  font-size: 0.9375rem;
  color: var(--sa-primary-600);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  min-height: 2.75rem;
  padding: 0.625rem 0.875rem;
  border-radius: 999px;
}

.cta-footer-link:hover {
  background: rgba(var(--landing-gradient-primary-rgb), 0.08);
  color: var(--sa-primary-700);
  transform: translateY(1px);
}

.cta-footer-link:focus-visible {
  outline: none;
  background: rgba(var(--landing-gradient-primary-rgb), 0.1);
  box-shadow: 0 0 0 3px rgba(248, 250, 252, 0.92), 0 0 0 6px rgba(var(--landing-gradient-primary-rgb), 0.2);
}

.cta-footer-link i {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-footer-link:hover i {
  transform: translateY(4px);
}

[data-bs-theme="dark"] .cta-footer-link {
  color: var(--sa-primary-100);
}

[data-bs-theme="dark"] .cta-footer-link:hover {
  color: var(--sa-primary-100);
  opacity: 0.8;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .cta-section {
    padding: 4rem 0 3.5rem;
  }
  
  .cta-title {
    font-size: 2rem;
  }
  
  .cta-subtitle {
    font-size: 1.125rem;
  }
  
  .tier-card {
    padding: 1.5rem 1.25rem;
  }

  .tier-card.tier-premium {
    padding: 1.75rem 1.5rem;
    text-align: center;
    align-items: center;
  }

  .tier-card.tier-premium .tier-icon,
  .tier-card.tier-premium .tier-badge {
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }
  
  .tier-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  .cta-btn-large {
    padding: 0.875rem 2rem;
    font-size: 1rem;
    width: 100%;
  }
  
  .cta-feature-list {
    grid-template-columns: 1fr;
  }

  .cta-feature-item {
    font-size: 0.8125rem;
    padding: 0.75rem 0.875rem;
  }
}

@media (max-width: 576px) {
  .cta-value-tiers .col-lg-3 {
    flex: 0 0 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .cta-value-tiers .col-lg-6 {
    flex: 0 0 100%;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .cta-actions .d-flex {
    flex-direction: column;
  }
  
  .cta-feature-item {
    min-width: 0;
  }
}

/* Accessibility: Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .cta-form-container,
  .trust-item,
  .cta-primary-btn,
  .cta-secondary-btn,
  .cta-email-input,
  .cta-footer-link,
  .tier-link {
    transform: none !important;
    transition: opacity 0.3s ease !important;
  }
  
  .cta-primary-btn::before {
    display: none;
  }
  
  .btn-arrow,
  .cta-footer-link i {
    transform: none !important;
  }
}


.cta-dark .form-control { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.3); color: white; }
.cta-dark .form-control::placeholder { color: rgba(255,255,255,0.7); }
.cta-dark .btn-outline-light { border-color: rgba(255,255,255,0.7); }

