/* src/css/sections/calendly.css */
.calendly-section {
  background: var(--color-bg-surface);
  padding: var(--space-2xl) 0;
  border-top: 1px solid var(--color-border);
}

.calendly-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto var(--space-xl);
}

.calendly-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* Calendly inline widget container */
.calendly-inline-widget {
  min-width: 320px;
  height: 700px;
  width: 100%;
}

/* Trust row below widget */
.calendly-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
  margin-top: var(--space-xl);
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-xs);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-secondary);
}

.trust-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-success);
  stroke-width: 2.5;
}
