.scheduler-wrap {
  max-width: 1180px;
}

.scheduler-panel {
  overflow: hidden;
}

.scheduler-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.scheduler-head h1 {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 2.35vw, 2.6rem);
  line-height: 1.08;
  max-width: 620px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .78rem;
}

.secondary {
  background: transparent !important;
  color: var(--accent) !important;
  border: 1px solid var(--accent) !important;
  box-shadow: none !important;
  text-decoration: none;
  white-space: nowrap;
}

.scheduler-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 14px;
}

.scheduler-card {
  appearance: none;
  width: 100%;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: center;
  text-align: left;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
  cursor: pointer;
  min-height: 112px;
  transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}

.scheduler-card:hover,
.scheduler-card:focus-visible {
  border-color: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(37, 99, 235, .14);
  outline: none;
}

.scheduler-card strong {
  display: block;
  font-size: 1.08rem;
  margin-bottom: 4px;
}

.scheduler-card small {
  display: block;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.35;
}

.scheduler-icon {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(37, 99, 235, .1);
  color: var(--accent);
  font-weight: 800;
  border: 1px solid rgba(37, 99, 235, .25);
}

.scheduler-footer {
  margin-top: 18px;
  min-height: 24px;
}

.support-wrap {
  max-width: 980px;
}

.support-panel {
  padding: 34px 42px 44px;
}

.support-panel h1 {
  margin: 0 0 24px;
  font-size: clamp(1.9rem, 2.6vw, 2.8rem);
  line-height: 1.08;
  max-width: 660px;
}

.support-lede {
  color: var(--text);
  font-size: clamp(1rem, 1.25vw, 1.25rem);
  line-height: 1.25;
  margin: 0 0 40px;
  max-width: 860px;
}

.support-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 22px;
}

.support-actions .btn,
.login-actions .btn {
  justify-content: center;
  min-height: 64px;
  font-size: 1.2rem;
  border-radius: 16px;
}

.support-primary {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
}

.support-secondary {
  color: var(--text) !important;
  border-color: #cbd5e1 !important;
}

.login-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  max-width: 620px;
}

.login-card h2 {
  margin: 0 0 18px;
}

.login-fields {
  display: grid;
  gap: 12px;
}

.login-fields label {
  min-width: 0;
  color: var(--muted);
}

.login-fields input {
  width: 100%;
  min-width: 0;
  min-height: 58px;
  border-radius: 14px;
  font-size: 1.05rem;
  padding: 14px 16px;
}

.login-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0 10px;
}

.embed-wrap {
  max-width: 1320px;
}

.embed-layout {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(360px, 1fr);
  gap: 18px;
  align-items: stretch;
}

.customer-copy {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
}

.customer-copy h2 {
  margin: 0 0 10px;
  font-size: 1.4rem;
}

.customer-copy p {
  color: var(--muted);
  margin: 0 0 18px;
}

.feature-list {
  display: grid;
  gap: 10px;
}

.feature-list span {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
}

.scheduler-picker {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.scheduler-picker label {
  color: var(--muted);
  font-weight: 700;
}

.scheduler-picker select {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0 12px;
  background: #ffffff;
  color: var(--text);
  font: inherit;
}

.scheduler-picker select:focus {
  border-color: var(--accent);
  outline: 2px solid rgba(37, 99, 235, 0.22);
}

.scheduler-frame-shell {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  min-height: 560px;
}

.scheduler-frame-shell iframe {
  display: block;
  width: 100%;
  height: 560px;
}

.embed-code {
  margin-top: 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
}

.embed-code summary {
  cursor: pointer;
  font-weight: 700;
}

.embed-code pre {
  overflow-x: auto;
  white-space: pre-wrap;
  margin: 12px 0 0;
  color: var(--muted);
}

@media (max-width: 820px) {
  .scheduler-head,
  .embed-layout {
    display: block;
  }

  .scheduler-head .btn {
    margin-top: 14px;
  }

  .scheduler-grid {
    grid-template-columns: 1fr;
  }

  .customer-copy {
    margin-bottom: 14px;
  }

  .support-actions {
    grid-template-columns: 1fr;
  }

  .support-panel {
    padding: 22px;
  }

  .support-panel h1 {
    font-size: clamp(1.75rem, 8vw, 2.4rem);
  }
}
