/* Atlanta Life Coaches — native tools shared stylesheet */

.alc-gc-wrap, .alc-bq-wrap, .alc-pp-wrap {
  max-width: 720px;
  margin: 0 auto;
  font-family: Georgia, serif;
  color: #1e293b;
}
.alc-gc-wrap *, .alc-bq-wrap *, .alc-pp-wrap * { box-sizing: border-box; }

/* Shared button */
.alc-btn {
  width: 100%;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #6b8f71, #4a7050);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1.05rem;
  font-family: Arial, sans-serif;
  font-weight: bold;
  letter-spacing: .04em;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s;
  box-shadow: 0 4px 14px rgba(107,143,113,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
}
.alc-btn:hover:not(:disabled) { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(107,143,113,.5); }
.alc-btn:disabled { opacity: .7; cursor: not-allowed; transform: none; }
.alc-btn-secondary {
  background: #1e293b; color: #fff; border: none; border-radius: 6px;
  padding: .6rem 1.1rem; font-family: Arial, sans-serif; font-weight: bold;
  font-size: .85rem; cursor: pointer;
}

.alc-spinner {
  width: 20px; height: 20px;
  border: 2.5px solid rgba(255,255,255,.35);
  border-top-color: #fff;
  border-radius: 50%;
  display: inline-block;
  animation: alc-spin .7s linear infinite;
}
@keyframes alc-spin { to { transform: rotate(360deg); } }

.alc-error-box {
  background: #fef2f2; border: 1px solid #fca5a5; border-radius: 8px;
  padding: 1rem 1.25rem; color: #b91c1c; font-family: Arial, sans-serif; font-size: .9rem;
}

.alc-reset-link { text-align: center; margin-top: 1rem; }
.alc-reset-link button {
  background: none; border: none; color: #6b8f71; font-family: Arial, sans-serif;
  font-size: .9rem; cursor: pointer; text-decoration: underline; padding: 0;
}
.alc-reset-link button:hover { color: #4a7050; }

/* Shared BrainWave promo */
.alc-brainwave-promo {
  display: block;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 60%, #0f3460 100%);
  border-radius: 12px;
  padding: 1.75rem;
  margin-top: 1.5rem;
  color: #fff;
  text-align: center;
}
.alc-promo-eyebrow {
  font-family: Arial, sans-serif; font-size: .75rem; font-weight: bold;
  text-transform: uppercase; letter-spacing: .12em; color: #a78bfa; margin-bottom: .6rem;
}
.alc-brainwave-promo h3 { font-weight: normal; font-size: 1.25rem; margin: 0 0 .6rem; line-height: 1.4; }
.alc-brainwave-promo h3 em { font-style: normal; color: #c4b5fd; }
.alc-brainwave-promo p { opacity: .85; margin: 0 0 1.25rem; line-height: 1.7; font-family: Arial, sans-serif; font-size: .92rem; }
.alc-brainwave-btn {
  background: linear-gradient(135deg, #7c3aed, #4f46e5); color: #fff;
  padding: .75rem 1.75rem; border-radius: 6px; font-family: Arial, sans-serif;
  font-weight: bold; text-decoration: none; font-size: .95rem; display: inline-block;
  box-shadow: 0 4px 14px rgba(124,58,237,.45);
}

.alc-email-box {
  background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 8px;
  padding: 1.1rem 1.25rem; margin-top: 1.25rem;
}
.alc-email-box label { display: block; font-family: Arial, sans-serif; font-size: .85rem; font-weight: bold; color: #475569; margin-bottom: .5rem; }
.alc-email-box label span { font-weight: normal; color: #94a3b8; }
.alc-email-row { display: flex; gap: .5rem; }
.alc-email-row input { flex: 1; padding: .6rem .8rem; border: 1px solid #cbd5e1; border-radius: 6px; font-family: Arial, sans-serif; }
.alc-email-status { font-family: Arial, sans-serif; font-size: .82rem; margin-top: .5rem; color: #475569; }

/* ============ Goal Clarity ============ */
.alc-gc-header { text-align: center; margin-bottom: 2rem; }
.alc-gc-icon { width: 64px; height: 64px; background: linear-gradient(135deg,#6b8f71,#4a7050); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.1rem; box-shadow: 0 4px 16px rgba(107,143,113,.35); }
.alc-gc-header h2 { font-size: 1.9rem; font-weight: normal; margin: 0 0 .4rem; letter-spacing: -.4px; }
.alc-gc-header p { color: #6b7280; font-style: italic; margin: 0; }
.alc-gc-card { background: #fff; border-radius: 12px; box-shadow: 0 4px 24px rgba(0,0,0,.08); padding: 1.75rem; margin-bottom: 1.25rem; border: 1px solid #d9e4da; }
.alc-gc-field { margin-bottom: 1.25rem; }
.alc-gc-field label { display: block; font-size: .88rem; font-weight: bold; font-family: Arial, sans-serif; color: #6b8f71; text-transform: uppercase; letter-spacing: .07em; margin-bottom: .45rem; }
.alc-gc-field label span { font-weight: normal; color: #6b7280; text-transform: none; letter-spacing: 0; font-size: .82rem; margin-left: .3rem; }
.alc-gc-wrap textarea, .alc-gc-wrap input[type="text"] { width: 100%; border: 1.5px solid #d9e4da; border-radius: 8px; padding: .8rem 1rem; font-size: 1rem; font-family: Georgia, serif; background: #fafcfa; }
.alc-gc-wrap textarea { min-height: 100px; }
.alc-gc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 540px) { .alc-gc-row { grid-template-columns: 1fr; } }
.alc-gc-result-header { margin-bottom: 1.25rem; padding-bottom: .9rem; border-bottom: 1px solid #d9e4da; }
.alc-gc-badge { background: #e8f0e9; color: #6b8f71; border: 1px solid #d9e4da; border-radius: 20px; padding: .3rem .9rem; font-size: .8rem; font-family: Arial, sans-serif; font-weight: bold; text-transform: uppercase; }
.alc-gc-result-body { line-height: 1.8; }
.alc-gc-result-body strong { display: block; color: #6b8f71; font-family: Arial, sans-serif; font-size: .88rem; text-transform: uppercase; letter-spacing: .07em; margin-top: 1.25rem; margin-bottom: .35rem; }
.alc-gc-result-body strong:first-child { margin-top: 0; }
.alc-gc-footer { text-align: center; color: #6b7280; font-size: .8rem; font-family: Arial, sans-serif; margin-top: 1.5rem; }

/* ============ Brain Quiz ============ */
.alc-bq-screen { display: none; }
.alc-bq-screen.alc-bq-active { display: block; }
.alc-bq-header { text-align: center; margin-bottom: 1.5rem; }
.alc-bq-icon { width: 60px; height: 60px; background: linear-gradient(135deg,#1e293b,#334155); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 1.7rem; box-shadow: 0 6px 20px rgba(30,41,59,.3); }
.alc-bq-card { background: #fff; border-radius: 14px; box-shadow: 0 4px 24px rgba(0,0,0,.08); padding: 1.75rem; border: 1px solid #e2e8f0; }
.alc-bq-intro-title { font-size: 1.7rem; font-weight: normal; text-align: center; margin: 0 0 .6rem; }
.alc-bq-intro-sub { color: #64748b; font-style: italic; text-align: center; margin: 0 0 1.25rem; }
.alc-bq-pill-row { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; margin-bottom: 1.25rem; }
.alc-bq-pill { background: #e8f0e9; color: #4a7050; border-radius: 20px; padding: .3rem .9rem; font-family: Arial, sans-serif; font-size: .78rem; font-weight: bold; }
.alc-bq-meta-row { display: flex; justify-content: center; gap: 1.25rem; font-family: Arial, sans-serif; font-size: .82rem; color: #64748b; margin-bottom: 1.5rem; }
.alc-bq-progress-labels { display: flex; justify-content: space-between; font-family: Arial, sans-serif; font-size: .75rem; color: #94a3b8; margin-bottom: .4rem; }
.alc-bq-progress-labels span.active { color: #1e293b; font-weight: bold; }
.alc-bq-progress-track { height: 6px; background: #e2e8f0; border-radius: 3px; overflow: hidden; margin-bottom: .6rem; }
.alc-bq-progress-fill { height: 100%; background: #1e293b; border-radius: 3px; transition: width .3s ease; }
.alc-bq-q-counter { text-align: center; font-family: Arial, sans-serif; font-size: .8rem; color: #94a3b8; margin-bottom: 1.25rem; }
.alc-bq-q-category { display: inline-block; background: #22c55e; color: #fff; font-family: Arial, sans-serif; font-size: .75rem; font-weight: bold; text-transform: uppercase; padding: .25rem .7rem; border-radius: 12px; margin-bottom: .8rem; }
.alc-bq-q-text { font-size: 1.15rem; margin-bottom: 1.25rem; line-height: 1.5; }
.alc-bq-options { display: flex; flex-direction: column; gap: .6rem; }
.alc-bq-options .alc-bq-option { display: flex; align-items: center; gap: .75rem; text-align: left; padding: .85rem 1rem; background: #fff; border: 1.5px solid #e2e8f0; border-radius: 8px; font-family: Arial, sans-serif; font-size: .92rem; cursor: pointer; transition: border-color .15s, background .15s; }
.alc-bq-options .alc-bq-option:hover { border-color: #94a3b8; background: #f8fafc; }
.alc-bq-options .alc-bq-option.alc-bq-selected { border-color: #1e293b; background: #f1f5f9; }
.alc-bq-opt-dot { width: 16px; height: 16px; border-radius: 50%; border: 2px solid #cbd5e1; flex-shrink: 0; }
.alc-bq-options .alc-bq-option.alc-bq-selected .alc-bq-opt-dot { border-color: #1e293b; background: #1e293b; }
.alc-bq-loading-inner { text-align: center; padding: 2.5rem 1.5rem; }
.alc-bq-spinner { width: 46px; height: 46px; margin: 0 auto 1.25rem; border: 4px solid #e2e8f0; border-top-color: #1e293b; border-radius: 50%; animation: alc-spin .8s linear infinite; }
.alc-bq-gauge-wrap { text-align: center; margin-bottom: 1.5rem; }
.alc-bq-score-label { font-family: Arial, sans-serif; font-weight: bold; font-size: 1rem; margin-top: .4rem; }
.alc-bq-categories { margin-bottom: 1.5rem; }
.alc-bq-cat-row { margin-bottom: .9rem; }
.alc-bq-cat-header { display: flex; justify-content: space-between; font-family: Arial, sans-serif; font-size: .85rem; font-weight: bold; margin-bottom: .3rem; }
.alc-bq-cat-track { height: 8px; background: #e2e8f0; border-radius: 4px; overflow: hidden; }
.alc-bq-cat-fill { height: 100%; width: 0%; border-radius: 4px; transition: width 1s ease .3s; }
.alc-bq-insights { line-height: 1.8; margin-bottom: .5rem; }
.alc-bq-insights strong { display: block; font-family: Arial, sans-serif; font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: #6b8f71; margin-top: 1.1rem; margin-bottom: .3rem; }
.alc-bq-insights strong:first-child { margin-top: 0; }
.alc-bq-footer { text-align: center; color: #64748b; font-size: .78rem; font-family: Arial, sans-serif; margin-top: 1.5rem; }

/* ============ Productivity Profiler ============ */
.alc-pp-header { text-align: center; margin-bottom: 1.75rem; }
.alc-pp-icon { width: 62px; height: 62px; background: linear-gradient(135deg,#d97706,#b45309); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.1rem; box-shadow: 0 6px 20px rgba(217,119,6,.3); }
.alc-pp-header h2 { font-size: 1.75rem; font-weight: normal; margin: 0 0 .5rem; }
.alc-pp-header p { color: #64748b; font-style: italic; margin: 0; }
.alc-pp-card { background: #fff; border-radius: 13px; box-shadow: 0 4px 24px rgba(0,0,0,.08); padding: 1.75rem; border: 1px solid #e2e8f0; margin-bottom: 1.1rem; }
.alc-pp-section-label { font-family: Arial, sans-serif; font-size: .8rem; font-weight: bold; text-transform: uppercase; letter-spacing: .08em; color: #d97706; margin-bottom: 1rem; }
.alc-pp-field { margin-bottom: 1.25rem; }
.alc-pp-field:last-child { margin-bottom: 0; }
.alc-pp-field label { display: block; font-family: Arial, sans-serif; font-size: .85rem; font-weight: bold; color: #1e293b; margin-bottom: .4rem; }
.alc-pp-field label span { font-weight: normal; color: #94a3b8; }
.alc-pp-pill-label { display: block; font-family: Arial, sans-serif; font-size: .85rem; font-weight: bold; color: #1e293b; margin-bottom: .6rem; }
.alc-pp-pill-label span { font-weight: normal; color: #94a3b8; }
.alc-pp-wrap textarea, .alc-pp-wrap input[type="text"] { width: 100%; border: 1.5px solid #e2e8f0; border-radius: 8px; padding: .75rem 1rem; font-family: Georgia, serif; }
.alc-pp-wrap textarea { min-height: 80px; }
.alc-pp-pill-group { display: flex; flex-wrap: wrap; gap: .5rem; }
.alc-pp-pill-btn { background: #fff; border: 1.5px solid #e2e8f0; border-radius: 20px; padding: .5rem 1rem; font-family: Arial, sans-serif; font-size: .85rem; cursor: pointer; }
.alc-pp-pill-btn.alc-pp-active { background: #d97706; border-color: #d97706; color: #fff; font-weight: bold; }
.alc-pp-required-note { display: none; color: #b91c1c; font-family: Arial, sans-serif; font-size: .78rem; margin-top: .4rem; }
.alc-pp-required-note.alc-pp-visible { display: block; }
.alc-pp-result-header { margin-bottom: 1.25rem; padding-bottom: .9rem; border-bottom: 1px solid #e2e8f0; }
.alc-pp-badge { background: #fef3c7; color: #b45309; border: 1px solid #fde68a; border-radius: 20px; padding: .3rem .9rem; font-size: .8rem; font-family: Arial, sans-serif; font-weight: bold; text-transform: uppercase; }
.alc-pp-result-body { line-height: 1.8; }
.alc-pp-result-body strong { display: block; font-family: Arial, sans-serif; font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: #d97706; margin-top: 1.1rem; margin-bottom: .3rem; }
.alc-pp-result-body strong:first-child { margin-top: 0; }
.alc-pp-result-body .alc-pp-schedule-block { background: #fffbeb; border-left: 3px solid #d97706; padding: .55rem .8rem; margin-bottom: .4rem; border-radius: 0 6px 6px 0; }
.alc-pp-result-body .alc-pp-schedule-block .alc-pp-time { font-weight: bold; font-family: Arial, sans-serif; }
.alc-pp-result-body .alc-pp-action-box { background: #fef3c7; border-left: 4px solid #d97706; border-radius: 0 8px 8px 0; padding: 1rem 1.25rem; margin-top: 1rem; }
.alc-pp-result-body .alc-pp-action-label { font-family: Arial, sans-serif; font-size: .78rem; font-weight: bold; text-transform: uppercase; color: #b45309; margin-bottom: .3rem; }
.alc-pp-resources-cta { text-align: center; margin-top: 1.1rem; font-family: Arial, sans-serif; font-size: .88rem; }
.alc-pp-resources-cta a { color: #6b8f71; font-weight: bold; text-decoration: none; }
.alc-pp-footer { text-align: center; color: #64748b; font-size: .78rem; font-family: Arial, sans-serif; margin-top: 1.5rem; }
