/* ===========================================
   SCHEDULE CALL PAGE — STYLES
   =========================================== */

.schedule-page {
  background: var(--gray-light);
  min-height: 100vh;
}

/* ===== MAIN LAYOUT ===== */
.sc-main {
  padding: 100px 0 60px;
  min-height: calc(100vh - 60px);
}

.sc-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 24px;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 56px;
  align-items: start;
}

/* ===== LEFT INFO PANEL ===== */
.sc-greeting {
  margin-bottom: 16px;
}
.sc-greeting span {
  display: inline-block;
  background: rgba(51,99,72,0.08);
  border: 1px solid var(--dark-green);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark-green);
}

.sc-heading {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 16px;
}
.sc-heading em {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  color: var(--dark-green);
  color: var(--mint-dark);
}

.sc-sub {
  font-size: 0.97rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 28px;
}

.sc-promises {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.sc-promises li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
}
.sc-promises li i {
  color: var(--dark-green);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.sc-divider {
  height: 1px;
  background: var(--border);
  margin: 24px 0;
}

.sc-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sc-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-light);
}
.sc-meta-item i {
  width: 18px;
  color: var(--dark-green);
  font-size: 0.85rem;
}

/* Social proof */
.sc-proof {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}
.sc-proof-stars {
  display: flex;
  gap: 3px;
  color: #f59e0b;
  font-size: 0.78rem;
  margin-bottom: 10px;
}
.sc-proof p {
  font-size: 0.85rem;
  color: var(--text-light);
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 8px;
}
.sc-proof span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-light);
}

/* ===== RIGHT CALENDAR PANEL ===== */
.sc-calendar {
  position: sticky;
  top: 100px;
}
.sc-calendar-inner {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  min-height: 700px;
}

/* Calendly actual embed fills the box */
.calendly-inline-widget {
  width: 100%;
  min-height: 700px;
}

/* ===== CALENDLY PLACEHOLDER ===== */
.calendly-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 32px;
  gap: 16px;
  min-height: 500px;
}

.cp-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(51,99,72,0.08);
  border: 2px dashed rgba(51,99,72,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--dark-green);
  margin-bottom: 8px;
}

.calendly-placeholder h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark);
}
.calendly-placeholder > p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 340px;
}

.cp-code {
  background: #f4f4f4;
  border: 1px solid #e0e0e0;
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  text-align: left;
  width: 100%;
  max-width: 380px;
}
.cp-code code {
  font-size: 0.72rem;
  color: #444;
  font-family: 'Courier New', monospace;
  line-height: 1.9;
}
.cp-code strong { color: var(--dark-green); }

/* ===== BACK BUTTON ===== */
.btn-back {
  font-size: 0.85rem;
  padding: 10px 18px;
  gap: 8px;
}

/* ===== FOOTER MINI ===== */
.sc-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.35);
  padding: 20px 0;
  text-align: center;
  font-size: 0.78rem;
}
.sc-footer a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.sc-footer a:hover { color: var(--neon-green); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .sc-container {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 24px 16px;
  }
  .sc-calendar {
    position: static;
  }
}
