/* BOOKING PAGE */
.book-hero {
  padding: 80px 32px 64px;
  border-bottom: 1px solid var(--border);
}
.book-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.book-eyebrow {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.book-headline {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 16px;
}
.book-sub {
  font-family: var(--font-body);
  font-size: 19px;
  color: var(--text-muted);
  max-width: 500px;
  line-height: 1.6;
}

/* TIER CARDS */
.tiers-section {
  padding: 80px 32px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.tiers-inner { max-width: 1100px; margin: 0 auto; }
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tier-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  position: relative;
}
.tier-card.featured {
  border-color: var(--accent);
  background: var(--accent-light);
}
.tier-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
}
.tier-name {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.tier-card.featured .tier-name { color: var(--accent); }
.tier-price {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: 4px;
}
.tier-duration {
  font-family: var(--font-head);
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.tier-description {
  font-family: var(--font-head);
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 28px;
}
.tier-features {
  list-style: none;
  flex: 1;
  margin-bottom: 28px;
}
.tier-features li {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  padding: 6px 0;
  padding-left: 18px;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.tier-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.tier-book-btn {
  width: 100%;
  padding: 12px 24px;
  background: var(--text);
  color: var(--bg);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
}
.tier-book-btn:hover { background: #333; }
.tier-card.featured .tier-book-btn {
  background: var(--accent);
}
.tier-card.featured .tier-book-btn:hover { background: #155f3e; }

/* CALENDLY SECTION */
.calendly-section {
  padding: 80px 32px;
  border-bottom: 1px solid var(--border);
}
.calendly-inner { max-width: 900px; margin: 0 auto; }
.calendly-header { text-align: center; margin-bottom: 40px; }
.calendly-headline {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 12px;
}
.calendly-sub {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--text-muted);
}
.calendly-widget-wrapper {
  display: flex;
  justify-content: center;
}

/* EXPECT SECTION */
.expect-section {
  padding: 80px 32px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.expect-inner { max-width: 1100px; margin: 0 auto; }
.expect-headline {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 48px;
}
.expect-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.expect-step { }
.expect-num {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 12px;
}
.expect-step h3 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.expect-step p {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* BOOKING MODAL */
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(26,25,22,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}
.booking-modal-inner {
  background: var(--surface);
  border-radius: 10px;
  padding: 40px;
  max-width: 440px;
  width: 100%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  padding: 4px;
  border-radius: 4px;
}
.modal-close:hover { color: var(--text); }
.modal-title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.modal-sub {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
}
.form-group input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--bg);
  outline: none;
  transition: border-color 0.15s;
}
.form-group input:focus { border-color: var(--accent); }
.form-tier-display {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 10px 14px;
  background: var(--accent-light);
  border-radius: var(--radius);
}
.form-tier-label {
  font-family: var(--font-head);
  font-size: 12px;
  color: var(--text-muted);
}
.form-tier-value {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
}
.form-submit {
  width: 100%;
  padding: 12px 24px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
  margin-top: 4px;
}
.form-submit:hover:not(:disabled) { background: #155f3e; }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.booking-error {
  margin-top: 12px;
  padding: 10px 14px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 13px;
  color: #991b1b;
}
.booking-success {
  margin-top: 16px;
  padding: 14px;
  background: var(--accent-light);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 10px;
}

/* NAV BOOK BTN */
.nav-book-btn {
  display: inline-block;
  padding: 6px 16px;
  background: var(--accent);
  color: #fff !important;
  border-radius: var(--radius);
  font-size: 13px !important;
  font-weight: 600 !important;
  transition: background 0.15s;
}
.nav-book-btn:hover { background: #155f3e !important; }

/* RESPONSIVE */
@media (max-width: 767px) {
  .book-hero { padding: 56px 20px 48px; }
  .book-headline { font-size: 32px; }
  .book-sub { font-size: 16px; }
  .tiers-section, .calendly-section, .expect-section { padding: 56px 20px; }
  .tiers-grid { grid-template-columns: 1fr !important; gap: 14px; }
  .expect-grid { grid-template-columns: 1fr !important; gap: 28px; }
  .booking-modal-inner { padding: 28px 20px; }
  .form-group input { font-size: 16px !important; }
}

@media (min-width: 768px) {
  .book-hero { padding: 72px 32px 60px; }
  .tiers-section, .calendly-section, .expect-section { padding: 72px 32px; }
  .tiers-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 20px; }
  .expect-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 28px; }
}

@media (min-width: 1024px) {
  .tiers-grid { grid-template-columns: repeat(3, 1fr) !important; gap: 24px; }
  .expect-grid { grid-template-columns: repeat(4, 1fr) !important; gap: 40px; }
}