/* Intake-only styles using existing brand tokens from main.css */

.intake-progress-wrap {
  max-width: 40rem;
  margin: 0 auto 1.25rem;
}

.intake-progress-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.5rem;
  font-family: Inter, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: hsl(var(--muted-foreground));
}

.intake-progress-meta strong {
  color: hsl(var(--primary));
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
}

.intake-progress-track {
  height: 0.375rem;
  border-radius: 9999px;
  background: hsl(var(--surface-light));
  border: 1px solid hsl(var(--border));
  overflow: hidden;
}

.intake-progress-fill {
  height: 100%;
  width: 0%;
  border-radius: 9999px;
  background: linear-gradient(135deg, hsl(43 60% 68%), hsl(43 52% 54%));
  box-shadow: 0 0 12px hsl(43 52% 54% / 0.35);
  transition: width 0.35s ease;
}

.intake-card {
  padding: 2rem;
  border-radius: 1rem;
  max-width: 40rem;
  margin: 0 auto;
}

.intake-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.intake-option {
  width: 100%;
  text-align: left;
  padding: 0.875rem 1.25rem;
  border-radius: 9999px;
  cursor: pointer;
}

.intake-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.intake-summary {
  white-space: pre-wrap;
  background: hsl(var(--surface));
  border: 1px solid hsl(var(--border));
  border-radius: 0.75rem;
  padding: 1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  max-height: 20rem;
  overflow: auto;
  color: hsl(var(--foreground));
}

/* intl-tel-input shared by intake and contact (flags and dial code) */
.phone-input-wrap .iti {
  width: 100%;
  display: block;
}

.phone-input-wrap .iti__flag-container {
  z-index: 2;
}

.phone-input-wrap .iti__selected-flag {
  background: transparent;
  border-radius: 0.5rem 0 0 0.5rem;
  padding: 0 0.5rem 0 0.75rem;
}

.phone-input-wrap .iti__selected-flag:hover,
.phone-input-wrap .iti__selected-flag:focus {
  background: hsl(43 52% 54% / 0.08);
}

.phone-input-wrap .iti__arrow {
  border-top-color: hsl(var(--muted-foreground));
}

.phone-input-wrap .iti__arrow--up {
  border-bottom-color: hsl(var(--primary));
}

.phone-input-wrap .iti__country-list {
  background: hsl(var(--surface));
  border: 1px solid hsl(var(--border));
  border-radius: 0.75rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  color: hsl(var(--foreground));
  font-family: Inter, sans-serif;
  font-size: 0.875rem;
  max-height: 220px;
  z-index: 20;
}

.phone-input-wrap .iti__country {
  padding: 0.5rem 0.75rem;
}

.phone-input-wrap .iti__country:hover,
.phone-input-wrap .iti__country.iti__highlight {
  background: hsl(43 52% 54% / 0.12);
}

.phone-input-wrap .iti__divider {
  border-bottom-color: hsl(var(--border));
}

.phone-input-wrap .iti__dial-code {
  color: hsl(var(--muted-foreground));
}

.phone-input-wrap input.form-input {
  padding-left: 5.5rem;
  width: 100%;
}

.phone-input-wrap .iti--separate-dial-code .iti__selected-dial-code {
  color: hsl(var(--primary));
  font-family: Inter, sans-serif;
  font-size: 0.875rem;
}

.phone-input-wrap .iti--separate-dial-code input.form-input {
  padding-left: 6.25rem;
}
