/* VoiceToCash – Lead Capture Popup */
.vtc-thank-frame {
  position: fixed;
  inset: 0;
  z-index: 13000;
  width: 100%;
  height: 100%;
  border: 0;
  margin: 0;
  padding: 0;
  background: #0a0a0a;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.vtc-thank-frame.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.vtc-thank-frame-open {
  overflow: hidden;
}

.vtc-lead-overlay {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(1rem, env(safe-area-inset-top, 0px)) max(1rem, env(safe-area-inset-right, 0px))
    max(1rem, env(safe-area-inset-bottom, 0px)) max(1rem, env(safe-area-inset-left, 0px));
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.vtc-lead-overlay.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.vtc-lead-modal {
  position: relative;
  display: flex;
  flex-direction: column;
  width: min(100%, 27rem);
  max-height: min(92dvh, 700px);
  overflow: hidden;
  isolation: isolate;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background:
    radial-gradient(ellipse 85% 45% at 50% -8%, rgba(230, 0, 0, 0.07), transparent 62%),
    linear-gradient(165deg, #141414 0%, #0a0a0a 100%);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.vtc-lead-modal::before {
  display: none;
}

.vtc-lead-modal > * {
  position: relative;
  z-index: 1;
}

.vtc-lead-overlay.is-visible .vtc-lead-modal {
  transform: translateY(0) scale(1);
}

/* Header */
.vtc-lead-header {
  flex-shrink: 0;
  padding: 1rem 1.1rem 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.02);
}

.vtc-lead-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}

.vtc-lead-step-meta {
  margin: 0;
  color: #9ca3af;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vtc-lead-step-meta span {
  color: #f3f4f6;
}

.vtc-lead-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  color: #b8bec8;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.vtc-lead-close svg {
  width: 0.95rem;
  height: 0.95rem;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
}

.vtc-lead-close:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.vtc-lead-close:active {
  transform: scale(0.96);
}

.vtc-lead-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.55rem;
}

.vtc-lead-steps-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
  color: #5f6773;
  transition: color 0.2s ease;
}

.vtc-lead-steps-item:last-child {
  justify-self: end;
}

.vtc-lead-steps-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.7rem;
  font-weight: 700;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.vtc-lead-steps-label {
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vtc-lead-steps-item.is-active {
  color: #f5f5f5;
}

.vtc-lead-steps-item.is-active .vtc-lead-steps-num {
  border-color: rgba(230, 0, 0, 0.5);
  background: linear-gradient(135deg, rgba(255, 40, 40, 0.22), rgba(180, 0, 0, 0.28));
  color: #fff;
  box-shadow: 0 0 0 3px rgba(230, 0, 0, 0.12);
}

.vtc-lead-steps-item.is-done {
  color: #c5cad3;
}

.vtc-lead-steps-item.is-done .vtc-lead-steps-num {
  border-color: transparent;
  background: linear-gradient(135deg, #ff3333, #c80000);
  color: #fff;
}

.vtc-lead-steps-track {
  position: relative;
  width: 2.75rem;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.vtc-lead-steps-fill {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ff5555, #e60000);
  transition: width 0.28s ease;
}

/* Body */
.vtc-lead-form-wrap {
  flex: 1;
  min-height: 0;
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(230, 0, 0, 0.35) transparent;
}

.vtc-lead-form-wrap::-webkit-scrollbar {
  width: 5px;
}

.vtc-lead-form-wrap::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(230, 0, 0, 0.35);
}

.vtc-lead-inner {
  padding: 1.2rem 1.15rem 1.3rem;
}

.vtc-lead-title {
  margin: 0 0 0.3rem;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: clamp(1.2rem, 4vw, 1.42rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: #fafafa;
}

.vtc-lead-sub {
  margin: 0 0 1rem;
  color: #a3a3a3;
  font-size: 0.86rem;
  line-height: 1.55;
}

.vtc-lead-step.hidden {
  display: none;
}

.vtc-lead-form {
  display: grid;
  gap: 0.72rem;
}

.vtc-lead-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.vtc-lead-phone-group {
  display: grid;
  gap: 0.32rem;
}

.vtc-lead-phone-label {
  color: #d4d4d4;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.vtc-lead-phone-input {
  display: flex;
  align-items: stretch;
  min-height: 2.85rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 11px;
  background: rgba(20, 20, 20, 0.75);
  overflow: visible;
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.vtc-lead-phone-input:focus-within {
  border-color: rgba(230, 0, 0, 0.55);
  background: rgba(24, 24, 24, 0.9);
  box-shadow: 0 0 0 3px rgba(230, 0, 0, 0.14);
}

.vtc-dial-picker {
  position: relative;
  flex-shrink: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.vtc-dial-native {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.vtc-dial-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  height: 100%;
  min-height: 2.85rem;
  padding: 0 0.72rem 0 0.65rem;
  border: 0;
  background: rgba(255, 255, 255, 0.03);
  color: #fafafa;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease;
}

.vtc-dial-trigger:hover {
  background: rgba(255, 255, 255, 0.06);
}

.vtc-dial-trigger:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 2px rgba(230, 0, 0, 0.35);
}

.vtc-dial-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.45rem;
  height: 1.05rem;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

.vtc-dial-flag img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vtc-dial-code {
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
}

.vtc-dial-chevron {
  width: 0.95rem;
  height: 0.95rem;
  color: rgba(255, 255, 255, 0.45);
  flex-shrink: 0;
  transition: transform 0.18s ease, color 0.15s ease;
}

.vtc-dial-trigger[aria-expanded="true"] .vtc-dial-chevron {
  transform: rotate(180deg);
  color: rgba(255, 255, 255, 0.72);
}

.vtc-dial-menu {
  position: absolute;
  top: calc(100% + 0.4rem);
  left: 0;
  z-index: 30;
  min-width: min(17.5rem, calc(100vw - 2.5rem));
  max-height: 14.5rem;
  overflow: auto;
  padding: 0.35rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(165deg, #1a1a1a 0%, #101010 100%);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.16) transparent;
}

.vtc-dial-menu.hidden {
  display: none;
}

.vtc-dial-option {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  padding: 0.58rem 0.62rem;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: rgba(255, 255, 255, 0.86);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: background 0.14s ease, color 0.14s ease;
}

.vtc-dial-option:hover {
  background: rgba(255, 255, 255, 0.06);
}

.vtc-dial-option.is-selected {
  background: rgba(230, 0, 0, 0.12);
  color: #fff;
}

.vtc-dial-option:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 2px rgba(230, 0, 0, 0.35);
}

.vtc-dial-option-name {
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1.25;
}

.vtc-dial-option-code {
  font-size: 0.8rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: rgba(255, 255, 255, 0.55);
}

.vtc-dial-option.is-selected .vtc-dial-option-code {
  color: rgba(255, 255, 255, 0.82);
}

.vtc-lead-phone-input input[type="tel"] {
  flex: 1;
  min-width: 0;
  padding: 0.72rem 0.85rem;
  border: 0;
  border-radius: 0 11px 11px 0;
  background: transparent;
  color: #fafafa;
  font-size: 0.92rem;
}

.vtc-lead-phone-input input[type="tel"]::placeholder {
  color: #5c6470;
}

.vtc-lead-phone-input input[type="tel"]:focus {
  outline: none;
}

.vtc-lead-field {
  display: grid;
  gap: 0.32rem;
}

.vtc-lead-field span {
  color: #d4d4d4;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.vtc-lead-field input {
  width: 100%;
  padding: 0.72rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 11px;
  background: rgba(20, 20, 20, 0.75);
  color: #fafafa;
  font-size: 0.92rem;
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.vtc-lead-field input::placeholder {
  color: #5c6470;
}

.vtc-lead-field input:focus {
  outline: none;
  border-color: rgba(230, 0, 0, 0.55);
  background: rgba(24, 24, 24, 0.9);
  box-shadow: 0 0 0 3px rgba(230, 0, 0, 0.14);
}

.vtc-lead-employment {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-top: 0.15rem;
}

.vtc-lead-employment-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.62);
}

.vtc-lead-employment-bar {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
}

.vtc-lead-employment-opt {
  position: relative;
  cursor: pointer;
}

.vtc-lead-employment-opt input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.vtc-lead-employment-opt span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.45rem;
  padding: 0.5rem 0.55rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.vtc-lead-employment-opt input:focus-visible + span {
  outline: 2px solid rgba(230, 0, 0, 0.55);
  outline-offset: 2px;
}

.vtc-lead-employment-opt input:checked + span {
  border-color: rgba(230, 0, 0, 0.65);
  background: rgba(230, 0, 0, 0.14);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(230, 0, 0, 0.25);
}

.vtc-lead-rejected {
  padding: 1.5rem 1.35rem 1.6rem;
}

.vtc-lead-rejected-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
}

.vtc-lead-rejected-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: rgba(255, 180, 80, 0.95);
  background: rgba(255, 180, 80, 0.1);
  border: 1px solid rgba(255, 180, 80, 0.22);
}

.vtc-lead-rejected-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.vtc-lead-rejected h3 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}

.vtc-lead-rejected p {
  margin: 0;
  max-width: 18rem;
  font-size: 0.92rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.68);
}

.vtc-lead-rejected p + p {
  margin-top: 0.65rem;
}

.vtc-lead-rejected .vtc-lead-submit {
  width: 100%;
  margin-top: 0.35rem;
}

.vtc-lead-form-wrap.hidden,
.vtc-lead-rejected.hidden,
.vtc-lead-header.hidden {
  display: none;
}

/* Schedule */
.vtc-lead-schedule {
  display: grid;
  gap: 0.85rem;
}

.vtc-lead-calendar {
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(18, 18, 18, 0.75);
}

.vtc-lead-cal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
}

.vtc-lead-cal-month {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: #f5f5f5;
  letter-spacing: -0.01em;
}

.vtc-lead-cal-nav {
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.03);
  color: #d1d5db;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.vtc-lead-cal-nav:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.vtc-lead-cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.12rem;
  margin-bottom: 0.28rem;
}

.vtc-lead-cal-weekdays span {
  text-align: center;
  font-size: 0.62rem;
  font-weight: 700;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.vtc-lead-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.12rem;
}

.vtc-lead-cal-day {
  aspect-ratio: 1;
  border: 1px solid transparent;
  border-radius: 9px;
  background: transparent;
  color: #e5e7eb;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.vtc-lead-cal-day.is-outside {
  opacity: 0.25;
}

.vtc-lead-cal-day.is-disabled {
  opacity: 0.2;
  cursor: not-allowed;
}

.vtc-lead-cal-day.is-today {
  border-color: rgba(255, 255, 255, 0.16);
}

.vtc-lead-cal-day.is-selected {
  background: linear-gradient(135deg, #ff3333, #cc0000);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 14px rgba(230, 0, 0, 0.35);
}

.vtc-lead-cal-day:not(.is-disabled):not(.is-selected):hover {
  background: rgba(255, 255, 255, 0.07);
}

/* Time list (scroll) */
.vtc-lead-times {
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(18, 18, 18, 0.75);
}

.vtc-lead-times-head {
  margin-bottom: 0.55rem;
}

.vtc-lead-times-kicker {
  display: inline-flex;
  margin-bottom: 0.35rem;
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: #a3a3a3;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vtc-lead-times-label {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 600;
  color: #e5e5e5;
  line-height: 1.4;
}

.vtc-lead-times-scroll {
  position: relative;
  max-height: 11.5rem;
  overflow: hidden;
  border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(12, 12, 12, 0.85);
}

.vtc-lead-times-scroll::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1.75rem;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(12, 12, 12, 0.95));
}

.vtc-lead-times-list {
  display: flex;
  flex-direction: column;
  gap: 0.38rem;
  max-height: 11.5rem;
  overflow-y: auto;
  padding: 0.45rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(230, 0, 0, 0.35) rgba(255, 255, 255, 0.05);
}

.vtc-lead-times-list::-webkit-scrollbar {
  width: 7px;
}

.vtc-lead-times-list::-webkit-scrollbar-track {
  margin: 0.25rem 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
}

.vtc-lead-times-list::-webkit-scrollbar-thumb {
  border-radius: 999px;
  border: 2px solid transparent;
  background: rgba(230, 0, 0, 0.45);
  background-clip: padding-box;
}

.vtc-lead-times-list::-webkit-scrollbar-thumb:hover {
  background: rgba(230, 0, 0, 0.6);
  background-clip: padding-box;
}

.vtc-lead-time-slot {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  width: 100%;
  padding: 0.62rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(22, 22, 22, 0.9);
  color: #f5f5f5;
  font-size: 0.84rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: background 0.16s ease, border-color 0.16s ease, transform 0.16s ease, box-shadow 0.16s ease;
}

.vtc-lead-time-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  flex-shrink: 0;
  transition: background 0.16s ease, box-shadow 0.16s ease;
}

.vtc-lead-time-text {
  flex: 1;
}

.vtc-lead-time-slot.is-selected {
  border-color: rgba(230, 0, 0, 0.55);
  background: linear-gradient(90deg, rgba(230, 0, 0, 0.22), rgba(230, 0, 0, 0.08));
  color: #fff;
  box-shadow: inset 3px 0 0 #e60000;
}

.vtc-lead-time-slot.is-selected .vtc-lead-time-dot {
  background: #ff4444;
  box-shadow: 0 0 8px rgba(230, 0, 0, 0.65);
}

.vtc-lead-time-slot.is-disabled {
  opacity: 0.28;
  cursor: not-allowed;
}

.vtc-lead-time-slot:not(.is-disabled):not(.is-selected):hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  transform: translateX(2px);
}

.vtc-lead-error {
  margin: 0;
  padding: 0.58rem 0.7rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 120, 120, 0.28);
  background: rgba(255, 80, 80, 0.1);
  color: #ffc9c9;
  font-size: 0.8rem;
  line-height: 1.4;
}

.vtc-lead-error[hidden] {
  display: none;
}

.vtc-lead-actions {
  display: flex;
  gap: 0.55rem;
  margin-top: 0.2rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.vtc-lead-back {
  flex: 0 0 auto;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.03);
  color: #d1d5db;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease;
}

.vtc-lead-back.hidden {
  display: none;
}

.vtc-lead-back:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
}

.vtc-lead-submit {
  flex: 1;
  width: 100%;
  padding: 0.82rem 1rem;
  border: 0;
  border-radius: 11px;
  background: linear-gradient(135deg, #ff3333 0%, #e60000 52%, #b80000 100%);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(230, 0, 0, 0.28);
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.vtc-lead-submit:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(230, 0, 0, 0.34);
}

.vtc-lead-submit:active:not(:disabled) {
  transform: translateY(0);
}

.vtc-lead-submit:disabled {
  opacity: 0.55;
  cursor: wait;
}

/* Success */
.vtc-lead-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5rem 1.5rem 2rem;
}

.vtc-lead-modal.is-success .vtc-lead-header,
.vtc-lead-modal.is-success .vtc-lead-form-wrap {
  display: none;
}

.vtc-lead-modal.is-success .vtc-lead-success {
  display: flex;
}

.vtc-lead-check {
  width: 4rem;
  height: 4rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.32);
  box-shadow: 0 0 24px rgba(52, 211, 153, 0.12);
}

.vtc-lead-check svg {
  width: 1.7rem;
  height: 1.7rem;
  stroke: #34d399;
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vtc-lead-success h3 {
  margin: 0 0 0.45rem;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 1.22rem;
  font-weight: 700;
  color: #fafafa;
}

.vtc-lead-success p {
  margin: 0;
  color: #a3a3a3;
  font-size: 0.88rem;
  line-height: 1.55;
  max-width: 18rem;
}

@media (min-width: 769px) {
  .vtc-lead-modal {
    width: min(100%, 40rem);
    max-height: min(90dvh, 740px);
    border-radius: 22px;
  }

  .vtc-lead-header {
    padding: 1.15rem 1.35rem 1rem;
  }

  .vtc-lead-inner {
    padding: 1.3rem 1.35rem 1.45rem;
  }

  .vtc-lead-title {
    font-size: 1.48rem;
  }

  .vtc-lead-sub {
    font-size: 0.92rem;
    margin-bottom: 1.05rem;
  }

  .vtc-lead-steps-label {
    font-size: 0.8rem;
  }

  .vtc-lead-steps-track {
    width: 3.25rem;
  }

  .vtc-lead-schedule {
    grid-template-columns: 1.08fr 0.92fr;
    align-items: stretch;
  }

  .vtc-lead-times-scroll,
  .vtc-lead-times-list {
    max-height: 15rem;
  }

  .vtc-lead-field input {
    padding: 0.76rem 0.9rem;
    font-size: 0.95rem;
  }

  .vtc-lead-submit {
    padding: 0.86rem 1.1rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .vtc-lead-row {
    grid-template-columns: 1fr;
  }

  .vtc-dial-menu {
    min-width: min(16.5rem, calc(100vw - 2rem));
  }

  .vtc-dial-trigger {
    padding: 0 0.58rem 0 0.55rem;
    gap: 0.35rem;
  }

  .vtc-dial-code {
    font-size: 0.84rem;
  }

  .vtc-lead-header {
    padding: 0.9rem 0.9rem 0.8rem;
  }

  .vtc-lead-inner {
    padding: 1rem 0.9rem 1.1rem;
  }

  .vtc-lead-steps-label {
    font-size: 0.68rem;
  }

  .vtc-lead-steps-track {
    width: 1.35rem;
  }

  .vtc-lead-times-scroll,
  .vtc-lead-times-list {
    max-height: 10rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .vtc-lead-overlay,
  .vtc-lead-modal,
  .vtc-lead-steps-fill,
  .vtc-lead-time-slot,
  .vtc-lead-check {
    transition: none;
  }
}
