.im-calcom-card {
  --im-calcom-bg: linear-gradient(180deg, rgba(33, 22, 20, 0.94), rgba(18, 12, 11, 0.98));
  --im-calcom-border: rgba(248, 175, 60, 0.26);
  --im-calcom-ink: rgba(255, 248, 239, 0.96);
  --im-calcom-soft: rgba(255, 241, 225, 0.72);
  --im-calcom-accent: #f8af3c;
  position: relative;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--im-calcom-border);
  border-radius: 28px;
  background: var(--im-calcom-bg);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  color: var(--im-calcom-ink);
  overflow: hidden;
}

.im-calcom-card::after {
  content: "";
  position: absolute;
  inset: auto -18% -42% auto;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(248, 175, 60, 0.22), rgba(248, 175, 60, 0));
  pointer-events: none;
}

.im-calcom-head {
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
}

.im-calcom-kicker {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--im-calcom-accent);
}

.im-calcom-head h3 {
  margin: 0 0 10px;
  font-size: clamp(1.65rem, 3vw, 2.2rem);
  line-height: 1.08;
  color: #fff7ef;
  text-transform: none;
}

.im-calcom-copy p,
.im-calcom-placeholder p,
.im-calcom-status {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--im-calcom-soft);
}

.im-calcom-placeholder {
  position: relative;
  z-index: 1;
  padding: 18px 20px;
  border: 1px dashed rgba(248, 175, 60, 0.32);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.im-calcom-placeholder code {
  padding: 0.2em 0.45em;
  border-radius: 8px;
  background: rgba(248, 175, 60, 0.12);
  color: #fff7ef;
}

.im-calcom-inline {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

.im-calcom-inline iframe {
  width: 100%;
  border: 0;
}

.im-calcom-status {
  position: relative;
  z-index: 1;
  margin-top: 12px;
}

.im-calcom-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.im-calcom-button,
.im-calcom-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.im-calcom-button {
  background: var(--im-calcom-accent);
  color: #1b120d;
  box-shadow: 0 18px 40px rgba(248, 175, 60, 0.2);
}

.im-calcom-link {
  border: 1px solid rgba(255, 241, 225, 0.22);
  color: #fff7ef;
  background: rgba(255, 255, 255, 0.03);
}

.im-calcom-button:hover,
.im-calcom-button:focus-visible,
.im-calcom-link:hover,
.im-calcom-link:focus-visible {
  transform: translateY(-1px);
}

.im-calcom-card.is-ready .im-calcom-status {
  color: rgba(255, 241, 225, 0.54);
}

.im-calcom-card.is-error .im-calcom-status {
  color: #ffd9c2;
}

@media (max-width: 849px) {
  .im-calcom-card {
    padding: 20px 18px 22px;
    border-radius: 22px;
  }

  .im-calcom-copy p,
  .im-calcom-placeholder p,
  .im-calcom-status {
    font-size: 0.96rem;
  }

  .im-calcom-actions {
    flex-direction: column;
  }
}
