/* Lgc.Web/wwwroot/src/css/Pages/customer-intake.css */
.ci-progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-8);
  padding: 0;
  list-style: none;
  counter-reset: step;
  position: relative;
}
.ci-progress__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
  counter-increment: step;
}
.ci-progress__step::before {
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--line);
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
  z-index: 1;
}
.ci-progress__step::after {
  content: "";
  position: absolute;
  top: 15px;
  left: calc(50% + 18px);
  width: calc(100% - 36px);
  height: 2px;
  background: var(--line);
  transition: background 0.2s;
}
.ci-progress__step:last-child::after {
  display: none;
}
.ci-progress__step--active::before,
.ci-progress__step--completed::before {
  background: var(--brand);
  color: #fff;
}
.ci-progress__step--completed::before {
  content: "";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.7rem;
}
.ci-progress__step--completed::after {
  background: var(--brand);
}
.ci-progress__label {
  display: none;
  margin-top: var(--space-1);
  font-size: 0.7rem;
  color: var(--muted);
  text-align: center;
}
.ci-progress__step--active .ci-progress__label {
  color: var(--brand);
  font-weight: 600;
}
@media (min-width: 576px) {
  .ci-progress__label {
    display: block;
  }
  .ci-progress__step::before {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
  }
  .ci-progress__step::after {
    top: 17px;
    left: calc(50% + 20px);
    width: calc(100% - 40px);
  }
}
.ci-wizard--hidden {
  display: none;
}
.ci {
  max-width: 640px;
  margin: 0 auto;
}
.ci__step {
  display: none;
  animation: ciFadeIn 0.25s ease-out;
}
.ci__step--active {
  display: block;
}
@keyframes ciFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.ci__step-title {
  font-size: var(--font-lg);
  font-weight: 600;
  margin-bottom: var(--space-2);
}
.ci__step-subtitle {
  color: var(--muted);
  margin-bottom: var(--space-6);
  font-size: 0.9rem;
}
.ci-card-group {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}
.ci-card-group--2col {
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 576px) {
  .ci-card-group--3col {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .ci-card-group--4col {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
.ci-card {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  border: 2px solid var(--line);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s;
  background: #fff;
}
.ci-card:hover {
  border-color: var(--brand);
}
.ci-card--selected {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.15);
  background: rgba(13, 110, 253, 0.03);
}
.ci-card--vertical {
  flex-direction: column;
  text-align: center;
  padding: var(--space-4) var(--space-3);
}
.ci-card--sm {
  padding: var(--space-2) var(--space-3);
  justify-content: center;
}
.ci-card__icon {
  font-size: var(--font-xl);
  color: var(--brand);
  min-width: 1.5rem;
  text-align: center;
}
.ci-card__label {
  font-weight: 600;
  font-size: 0.9rem;
}
.ci-card__desc {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 2px;
}
.ci-conditional--hidden {
  display: none;
}
.ci-info-banner {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-4);
  background: rgba(13, 110, 253, 0.05);
  border: 1px solid rgba(13, 110, 253, 0.2);
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  color: var(--text);
  margin-bottom: var(--space-4);
}
.ci-info-banner i {
  color: var(--brand);
  margin-top: 2px;
  flex-shrink: 0;
}
.ci-review {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  margin-bottom: var(--space-4);
}
.ci-review__section {
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--line);
}
.ci-review__section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.ci-review__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-3);
}
.ci-review__title {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}
.ci-review__edit {
  background: none;
  border: none;
  color: var(--brand);
  font-size: 0.8rem;
  cursor: pointer;
  padding: 0;
  font-weight: 500;
}
.ci-review__edit:hover {
  text-decoration: underline;
}
.ci-review__field {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: var(--space-1) 0;
  gap: var(--space-4);
}
.ci-review__label {
  font-size: 0.85rem;
  color: var(--muted);
  flex-shrink: 0;
}
.ci-review__value {
  font-size: 0.9rem;
  font-weight: 500;
  text-align: right;
  word-break: break-word;
}
.ci-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--space-8);
  gap: var(--space-4);
}
.ci-nav__back {
  background: none;
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  padding: var(--space-2) var(--space-6);
  color: var(--muted);
  font-weight: 500;
  cursor: pointer;
  min-height: var(--touch-target-min);
  transition: border-color 0.15s, color 0.15s;
}
.ci-nav__back:hover {
  border-color: var(--muted);
  color: var(--text);
}
.ci-nav__next,
.ci-nav__submit {
  background: var(--brand);
  border: none;
  border-radius: var(--radius-sm);
  padding: var(--space-2) var(--space-8);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  min-height: var(--touch-target-min);
  transition: background 0.15s;
  margin-left: auto;
}
.ci-nav__next:hover,
.ci-nav__submit:hover {
  background: var(--brand-hover);
}
.ci-nav__next:disabled,
.ci-nav__submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.ci-field-error {
  color: var(--danger);
  font-size: 0.8rem;
  margin-top: var(--space-1);
  display: none;
}
.ci-field-error--visible {
  display: block;
}
.ci__field-group {
  margin-bottom: var(--space-4);
}
.ci__field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}
.ci-noscript-form {
  max-width: 640px;
  margin: 0 auto;
}
.ci-thank-you {
  max-width: 640px;
  margin: 0 auto;
  padding-top: 2rem;
}
.ci-thank-you__steps {
  max-width: 400px;
  margin: 0 auto;
}
@supports not (backdrop-filter: blur(1px)) {
  .ci-review {
    background: var(--bg-subtle);
    border-color: var(--line);
    box-shadow: none;
  }
}
/*# sourceMappingURL=customer-intake.min.css.map */
