/* ── Engage Page Styles ── */
.sac-engage { font-family: 'Inter', -apple-system, sans-serif; color: #fff; }
.sac-engage *, .sac-engage *::before, .sac-engage *::after { box-sizing: border-box; }
.sac-engage__container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* Hero */
.sac-engage__hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #1a0a2e 0%, #2d1650 30%, #4a1d8a 60%, #1a0a2e 100%);
  overflow: hidden;
}
.sac-engage__hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(124,58,237,0.3) 0%, transparent 60%),
              radial-gradient(circle at 70% 60%, rgba(79,70,229,0.2) 0%, transparent 50%);
  animation: sac-engage-pulse 8s ease-in-out infinite alternate;
}
@keyframes sac-engage-pulse {
  0% { opacity: 0.6; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.05); }
}
.sac-engage__hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
}
.sac-engage__hero-content {
  position: relative;
  z-index: 1;
  padding: 60px 24px;
  max-width: 800px;
}
.sac-engage__hero-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #a78bfa;
  margin-bottom: 16px;
}
.sac-engage__hero-title {
  font-size: clamp(32px, 6vw, 60px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}
.sac-engage__hero-sub {
  font-size: clamp(16px, 2.5vw, 22px);
  color: rgba(255,255,255,0.7);
  margin: 0 0 32px;
  line-height: 1.5;
}
.sac-engage__hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.sac-engage__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s;
  cursor: pointer;
  border: 2px solid transparent;
}
.sac-engage__btn--primary {
  background: #7c3aed;
  color: #fff;
  border-color: #7c3aed;
  box-shadow: 0 4px 20px rgba(124,58,237,0.4);
}
.sac-engage__btn--primary:hover {
  background: #6d28d9;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(124,58,237,0.5);
}
.sac-engage__btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.3);
}
.sac-engage__btn--outline:hover {
  border-color: #a78bfa;
  color: #a78bfa;
  transform: translateY(-2px);
}
.sac-engage__btn--lg { padding: 16px 34px; font-size: 16px; }

/* Section titles */
.sac-engage__section-title {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 900;
  text-align: center;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}
.sac-engage__section-title--light { color: #fff; }
.sac-engage__section-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
  line-height: 1.7;
}
.sac-engage__section-sub--light { color: rgba(255,255,255,0.6); }

/* Why Section */
.sac-engage__why {
  background: #0d0d14;
  padding: 80px 0;
}
.sac-engage__pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.sac-engage__pillar {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.sac-engage__pillar:hover {
  transform: translateY(-6px);
  border-color: rgba(124,58,237,0.4);
  box-shadow: 0 12px 40px rgba(124,58,237,0.15);
}
.sac-engage__pillar-icon {
  font-size: 40px;
  margin-bottom: 16px;
}
.sac-engage__pillar h3 {
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 10px;
}
.sac-engage__pillar p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin: 0;
}

/* Ways to Join */
.sac-engage__ways {
  background: linear-gradient(135deg, #2d1650 0%, #1a0a2e 100%);
  padding: 80px 0;
}
.sac-engage__ways-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.sac-engage__way-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.sac-engage__way-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #7c3aed, #a78bfa);
}
.sac-engage__way-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.sac-engage__way-num {
  font-size: 48px;
  font-weight: 900;
  color: rgba(124,58,237,0.2);
  line-height: 1;
  margin-bottom: 8px;
}
.sac-engage__way-icon {
  font-size: 32px;
  margin-bottom: 14px;
}
.sac-engage__way-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 12px;
}
.sac-engage__way-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin: 0 0 16px;
}
.sac-engage__way-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(124,58,237,0.2);
  border: 1px solid rgba(124,58,237,0.3);
  color: #a78bfa;
  letter-spacing: 0.5px;
}

/* Affiliation Classes Accordion */
.sac-engage__classes {
  background: #0d0d14;
  padding: 80px 0;
}
.sac-engage__accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sac-engage__acc-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.sac-engage__acc-item.is-open {
  border-color: rgba(124,58,237,0.5);
  background: rgba(124,58,237,0.06);
}
.sac-engage__acc-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  transition: background 0.2s;
}
.sac-engage__acc-trigger:hover { background: rgba(255,255,255,0.04); }
.sac-engage__acc-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(124,58,237,0.2);
  border: 1px solid rgba(124,58,237,0.4);
  color: #a78bfa;
  font-size: 13px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sac-engage__acc-item.is-open .sac-engage__acc-num {
  background: #7c3aed;
  border-color: #7c3aed;
  color: #fff;
}
.sac-engage__acc-label { flex: 1; }
.sac-engage__acc-arrow {
  font-size: 18px;
  color: rgba(255,255,255,0.4);
  transition: transform 0.3s;
}
.sac-engage__acc-item.is-open .sac-engage__acc-arrow { transform: rotate(180deg); color: #a78bfa; }
.sac-engage__acc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 24px;
}
.sac-engage__acc-item.is-open .sac-engage__acc-panel {
  max-height: 400px;
  padding: 0 24px 24px;
}
.sac-engage__acc-panel p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin: 0 0 12px;
}
.sac-engage__acc-panel ul {
  margin: 8px 0 0 0;
  padding-left: 20px;
}
.sac-engage__acc-panel ul li {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 6px;
}

/* CTA */
.sac-engage__cta {
  background: linear-gradient(135deg, #4a1d8a 0%, #2d1650 50%, #1a0a2e 100%);
  padding: 100px 0;
  text-align: center;
}
.sac-engage__cta-inner {
  max-width: 700px;
  margin: 0 auto;
}
.sac-engage__cta-icon {
  font-size: 56px;
  margin-bottom: 20px;
  animation: sac-anchor-bob 3s ease-in-out infinite;
}
@keyframes sac-anchor-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.sac-engage__cta h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}
.sac-engage__cta p {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin: 0 0 32px;
}
.sac-engage__cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.sac-engage__cta-note {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  margin: 0;
}
.sac-engage__cta-note a {
  color: #a78bfa;
  text-decoration: none;
}
.sac-engage__cta-note a:hover { text-decoration: underline; }

/* Responsive */
@media (max-width: 640px) {
  .sac-engage__hero { min-height: 80vh; }
  .sac-engage__why, .sac-engage__ways, .sac-engage__classes, .sac-engage__cta { padding: 60px 0; }
  .sac-engage__hero-btns, .sac-engage__cta-btns { flex-direction: column; align-items: center; }
  .sac-engage__btn { width: 100%; justify-content: center; max-width: 320px; }
}

/* ══════════════════════════════════════
   Prospect Modal — Complete Styles
   ══════════════════════════════════════ */
.arkc-prospect-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 32px 16px;
}
.arkc-prospect-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(3px);
}
.arkc-prospect-modal__box {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 580px;
  max-height: calc(100vh - 64px);
  overflow-y: auto;
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
}
.arkc-prospect-modal__box::-webkit-scrollbar { width: 5px; }
.arkc-prospect-modal__box::-webkit-scrollbar-track { background: transparent; }
.arkc-prospect-modal__box::-webkit-scrollbar-thumb { background: #c4b5d4; border-radius: 3px; }
.arkc-prospect-modal__box::-webkit-scrollbar-thumb:hover { background: #44366a; }

/* Header */
.arkc-prospect-modal__header {
  background: linear-gradient(135deg,#2d1650,#44366a);
  color: #fff;
  padding: 20px 28px 18px;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 2;
}
.arkc-prospect-modal__icon { font-size: 1.6rem; display: block; margin-bottom: 4px; }
.arkc-prospect-modal__header h2 { margin: 0 0 4px; font-size: 1.3rem; font-weight: 700; }
.arkc-prospect-modal__header p { margin: 0; font-size: 0.88rem; opacity: 0.8; }
.arkc-prospect-modal__close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  font-size: 1.3rem;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  z-index: 3;
}
.arkc-prospect-modal__close:hover { background: rgba(255,255,255,0.3); }

/* Step Indicators */
.arkc-steps {
  display: flex;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 1;
  background: #fff;
}
.arkc-step {
  flex: 1;
  padding: 10px 6px;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: #9ca3af;
  background: #f9fafb;
  cursor: default;
  transition: all 0.2s;
  border-bottom: 3px solid transparent;
}
.arkc-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #e5e7eb;
  color: #6b7280;
  font-size: 0.7rem;
  font-weight: 700;
  margin-right: 3px;
  vertical-align: middle;
}
.arkc-step.is-active { color: #44366a; background: #fff; border-bottom-color: #44366a; }
.arkc-step.is-active span { background: #44366a; color: #fff; }
.arkc-step.is-done { color: #00796b; background: #fff; border-bottom-color: #00796b; }
.arkc-step.is-done span { background: #00796b; color: #fff; }

/* Form Steps */
.arkc-form-step { display: none; padding: 20px 28px 0; }
.arkc-form-step.is-active { display: block; }
.arkc-form-step p { color: #6b7280; font-size: 0.85rem; margin: 0 0 16px; }

/* Fields */
.arkc-prospect-modal__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.arkc-prospect-modal__field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 10px;
}
.arkc-prospect-modal__field label {
  font-size: 0.78rem;
  font-weight: 600;
  color: #374151;
}
.arkc-prospect-modal__field label span { color: #dc2626; }
.arkc-prospect-modal__field input,
.arkc-prospect-modal__field select,
.arkc-prospect-modal__field textarea {
  padding: 8px 12px;
  border: 1.5px solid #d1d5db;
  border-radius: 8px;
  font-size: 0.88rem;
  color: #111827;
  background: #fff;
  transition: border-color 0.2s;
  width: 100%;
  box-sizing: border-box;
}
.arkc-prospect-modal__field input:focus,
.arkc-prospect-modal__field select:focus,
.arkc-prospect-modal__field textarea:focus { outline: none; border-color: #44366a; }
.arkc-prospect-modal__field input.error,
.arkc-prospect-modal__field select.error { border-color: #dc2626; }

/* Nav Buttons */
.arkc-form-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0 20px;
  margin-top: 8px;
  border-top: 1px solid #f3f4f6;
}
.arkc-btn {
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid #d1d5db;
  background: #f9fafb;
  color: #374151;
  transition: all 0.2s;
}
.arkc-btn:hover { background: #f3f4f6; border-color: #9ca3af; }
.arkc-prospect-modal__submit {
  padding: 9px 22px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  background: linear-gradient(135deg, #44366a, #2d1650);
  color: #fff;
  transition: all 0.2s;
  margin-left: auto;
}
.arkc-prospect-modal__submit:hover { opacity: 0.9; }
.arkc-prospect-modal__submit:disabled { opacity: 0.5; cursor: not-allowed; }

/* Family Members */
.arkc-family-member {
  background: #f9fafb;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 10px;
}
.arkc-family-member__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.arkc-family-member__header strong { color: #2d1650 !important; font-size: 0.88rem; }
.arkc-remove-family {
  background: #fee2e2 !important;
  border: 1px solid #fca5a5 !important;
  color: #dc2626 !important;
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 0.75rem;
  cursor: pointer;
}
.arkc-family-member__age-notice {
  color: #92400e !important;
  background: #fef3c7 !important;
  border: 1px solid #fcd34d !important;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 0.78rem;
  margin-top: 8px;
}
#arkc-add-family {
  width: 100%;
  background: none;
  border: 2px dashed #44366a;
  color: #44366a;
  border-radius: 8px;
  padding: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 12px;
  transition: background 0.2s;
}
#arkc-add-family:hover { background: #f3f0f8; }

/* Notice */
.arkc-prospect-modal__notice { margin: 0 0 12px; padding: 10px 14px; border-radius: 8px; font-size: 0.85rem; }
.arkc-prospect-modal__notice.success { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }
.arkc-prospect-modal__notice.error { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }

/* Spouse fields */
.arkc-spouse-fields { margin-top: 8px; }

/* Responsive */
@media (max-width: 480px) {
  .arkc-prospect-modal { padding: 16px 8px; }
  .arkc-prospect-modal__box { border-radius: 12px; max-height: calc(100vh - 32px); }
  .arkc-prospect-modal__row { grid-template-columns: 1fr; }
  .arkc-form-step { padding: 16px 16px 0; }
  .arkc-steps { overflow-x: auto; }
  .arkc-step { font-size: 0.68rem; padding: 8px 4px; }
  .arkc-form-nav { padding: 12px 0 16px; }
}
