.fc-overlay {
  --fc-blue: #2252C1;
  --fc-font: 'Lato', sans-serif;
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(13,27,42,.55);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
}
.fc-overlay[hidden] { display: none; }

.fc-modal {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  width: 100%; max-width: 540px;
  max-height: 90vh; overflow: hidden auto;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,.2);
  font-family: var(--fc-font);
}

.fc-close {
  position: absolute; top: 1rem; right: 1rem;
  background: #f3f4f6; border: none; border-radius: 50%;
  width: 32px; height: 32px; cursor: pointer;
  font-size: 1rem; color: #555;
  display: flex; align-items: center; justify-content: center;
}
.fc-close:hover { background: #e5e7eb; }
.fc-close:focus-visible { outline: 2px solid var(--fc-blue); outline-offset: 2px; }

.fc-label {
  font-size: .6875rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--fc-blue); margin-bottom: .5rem;
}
.fc-title { font-size: 1.5rem; font-weight: 900; color: #141414; margin-bottom: .5rem; }
.fc-subtitle { color: #666; font-size: .9375rem; margin-bottom: 1.75rem; line-height: 1.5; }

.fc-form-wrap { display: flex; flex-direction: column; }

/* Steps */
.fc-step[hidden] { display: none; }

/* Back button */
.fc-back {
  background: none; border: none; color: var(--fc-blue);
  font-size: .875rem; cursor: pointer; padding: 0;
  margin-bottom: 1rem; display: inline-block;
}

/* Main menu (Step 1) */
.fc-menu { display: flex; flex-direction: column; gap: .75rem; }
.fc-menu-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.125rem 1.25rem; border-radius: 10px; gap: 1rem;
  font-size: .9375rem; font-weight: 600; color: #141414;
}
.fc-menu-item--yellow { background: #fdf6d8; }
.fc-menu-item--blue   { background: #dce9fb; }
.fc-menu-item--green  { background: #d9f7e6; }

.fc-menu-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  border: none; border-radius: 8px; cursor: pointer;
  font-family: var(--fc-font); font-weight: 700; font-size: .875rem;
  padding: .625rem 1.125rem; white-space: nowrap;
  text-decoration: none; transition: filter .2s, background .2s;
}
.fc-menu-btn:hover { filter: brightness(.94); }
.fc-menu-btn--yellow { background: #f3c26b; color: #4a3407; }
.fc-menu-btn--blue    { background: var(--fc-blue); color: #fff; }
.fc-menu-btn--green    { background: #25D366; color: #fff; }

/* Reason buttons */
.fc-reasons { display: flex; flex-direction: column; gap: .625rem; margin-bottom: 1.5rem; }
.fc-reason {
  display: flex; align-items: center; gap: .75rem;
  padding: .875rem 1rem; border: 1.5px solid #e5e7eb;
  border-radius: 10px; background: #fff; cursor: pointer;
  text-align: left; font-size: .9375rem; font-weight: 600; color: #141414;
  transition: border-color .2s, background .2s;
}
.fc-reason:hover { border-color: var(--fc-blue); background: #eff4ff; }
.fc-reason svg { color: var(--fc-blue); flex-shrink: 0; }

.fc-btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--fc-font); font-weight: 700; border-radius: 8px;
  text-decoration: none; cursor: pointer; border: 2px solid transparent;
  transition: background .2s, color .2s, border-color .2s;
  padding: .75rem 1.5rem; font-size: 1rem;
}
.fc-btn-primary {
  background: var(--fc-blue); color: #fff; border-color: var(--fc-blue);
}
.fc-btn-primary:hover { background: #1a3fa0; border-color: #1a3fa0; }
.fc-btn-outline {
  background: transparent; color: var(--fc-blue); border-color: var(--fc-blue);
}
.fc-btn-outline:hover { background: var(--fc-blue); color: #fff; }
.fc-btn-sm { padding: .5rem 1rem; font-size: .875rem; }
.fc-btn-lg { padding: 1rem 2rem; font-size: 1.125rem; }
