.trial-main { padding-top: 16px; }

.trial-intro {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.trial-title {
  margin: 8px 0 18px;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.1;
}

.trial-lede,
.trial-reassure {
  max-width: 56ch;
  margin: 0 auto;
  color: var(--ink-2);
  line-height: 1.55;
}

.trial-lede { margin-bottom: 8px; font-size: 1.06rem; }
.trial-reassure { margin-top: 10px; font-size: 0.95rem; }

.trial-stage {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(300px, 5fr);
  gap: clamp(36px, 5vw, 56px);
  align-items: center;
  margin-bottom: 72px;
}

.trial-h2 {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.trial-h2-sub {
  margin: 0 0 24px;
  color: var(--ink-2);
  font-size: 0.95rem;
}

.trial-form-mount {
  min-height: 220px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.form-fallback { margin: 16px 0 0; color: var(--ink-2); font-size: 0.9rem; }

.trial-card {
  overflow: hidden;
  padding: 32px;
  border: 1px solid #0b7155;
  border-radius: 16px;
  background: var(--accent);
  box-shadow: 0 18px 45px rgba(6, 95, 70, 0.16);
  color: var(--accent-ink);
}

.trial-card-eyebrow {
  margin: 0 0 9px;
  color: #a7f3d0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trial-card-title {
  margin: 0 0 25px;
  color: var(--accent-ink);
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.25rem);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.08;
}

.trial-checklist {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trial-checklist li {
  position: relative;
  padding: 14px 0 14px 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  line-height: 1.45;
}

.trial-checklist li::before {
  position: absolute;
  top: 16px;
  left: 2px;
  width: 16px;
  height: 16px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  content: "";
}

.trial-checklist li::after {
  position: absolute;
  top: 20px;
  left: 6px;
  width: 7px;
  height: 4px;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  content: "";
  transform: rotate(-45deg);
}

.trial-talk {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  margin: 22px -32px -32px;
  padding: 22px 32px;
  background: rgba(0, 0, 0, 0.13);
}

.trial-talk p { margin: 0; font-size: 0.9rem; line-height: 1.45; }
.trial-talk .btn { border-color: #fff; background: #fff; color: var(--accent); white-space: nowrap; }

.trial-next {
  padding: 48px;
  border-radius: 16px;
  background: var(--paper-alt);
}

.trial-next-title {
  margin: 0 0 32px;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
  line-height: 1.12;
}

.trial-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.trial-steps li { padding-top: 16px; border-top: 1px solid var(--border); }
.trial-steps span { display: block; margin-bottom: 14px; color: var(--accent); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; }
.trial-steps strong { display: block; color: var(--ink); font-size: 1rem; }
.trial-steps p { margin: 7px 0 0; color: var(--ink-2); font-size: 0.92rem; line-height: 1.5; }

body.book-modal-open { overflow: hidden; }

.book-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.book-modal[hidden] { display: none; }

.book-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 27, 22, 0.55);
  backdrop-filter: blur(2px);
}

.book-modal__panel {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  width: 100%;
  max-width: 720px;
  max-height: calc(100vh - 48px);
  border-radius: 14px;
  background: var(--paper);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  animation: book-modal-in 180ms ease-out;
}

@keyframes book-modal-in {
  from { opacity: 0; transform: translateY(8px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.book-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
}

.book-modal__title {
  margin: 0;
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 600;
}

.book-modal__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.book-modal__close:hover { background: var(--paper-alt); }

.book-modal__body {
  flex: 1;
  overflow: auto;
  padding: 0;
}

.book-modal__body .calendly-inline-widget {
  width: 100%;
  min-width: 0;
  height: min(640px, calc(100vh - 200px));
}

.book-modal__note {
  margin: 0;
  padding: 12px 24px 18px;
  border-top: 1px solid var(--border);
  color: var(--ink-2);
  font-size: 0.85rem;
  text-align: center;
}

@media (max-width: 960px) {
  .trial-stage { grid-template-columns: 1fr; align-items: start; }
  .trial-card { max-width: 640px; }
}

@media (max-width: 700px) {
  .trial-intro { margin-bottom: 40px; }
  .trial-next { padding: 32px 24px; }
  .trial-steps { grid-template-columns: 1fr; gap: 24px; }
  .trial-talk { grid-template-columns: 1fr; }
  .trial-talk .btn { width: 100%; }
}

@media (max-width: 600px) {
  .book-modal { padding: 0; }
  .book-modal__panel { height: 100vh; max-height: 100vh; border-radius: 0; }
  .book-modal__body .calendly-inline-widget { height: calc(100vh - 140px); }
}

@media (prefers-reduced-motion: reduce) {
  .book-modal__panel { animation: none; }
}

@media (max-width: 480px) {
  .trial-card { padding: 26px 22px; }
  .trial-talk { margin: 20px -22px -26px; padding: 20px 22px 22px; }
}
