/* ============================================================
   Direct Flow Marketing — Book a Call funnel
   Minimal, distraction-free page: no nav, no footer, just the card.
   Reuses color/font variables defined in styles.css.
   ============================================================ */

.funnel-body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.funnel-header {
  padding: 28px 24px;
  text-align: center;
}

.funnel-header .logo {
  display: inline-flex;
}

.funnel-header .logo__image {
  height: 40px;
}

.funnel-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 20px 24px 80px;
}

.funnel-card {
  width: 100%;
  max-width: 640px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 12px 44px rgba(23, 23, 26, 0.08);
}

.funnel-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3.6vw, 2.1rem);
  line-height: 1.25;
  text-align: center;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0;
}

.funnel-heading-accent {
  color: var(--gold);
}

.funnel-subhead {
  text-align: center;
  color: var(--text-muted);
  margin-top: 14px;
  font-size: 1rem;
}

.funnel-progress {
  margin-top: 36px;
}

.funnel-progress__meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.funnel-progress__track {
  height: 6px;
  background: var(--border-strong);
  border-radius: 999px;
  overflow: hidden;
}

.funnel-progress__fill {
  height: 100%;
  width: 25%;
  background: var(--gold);
  border-radius: 999px;
  transition: width 0.4s var(--ease);
}

.funnel-step {
  margin-top: 34px;
}

.funnel-question {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 0 0 26px;
}

.funnel-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.funnel-option {
  padding: 22px 16px;
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  background: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), transform 0.2s var(--ease);
}

.funnel-option:hover {
  border-color: var(--gold);
  background: var(--gold-dim);
  transform: translateY(-2px);
}

.funnel-option.is-selected {
  border-color: var(--gold);
  background: var(--gold-dim);
}

.funnel-label {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-muted);
  margin: 20px 0 8px;
}

.funnel-label:first-of-type {
  margin-top: 0;
}

.funnel-input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: #fff;
}

.funnel-input::placeholder {
  color: var(--text-muted);
  opacity: 0.7;
}

.funnel-input:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-color: var(--gold);
}

.funnel-input--error {
  border-color: #C0392B;
  border-width: 2px;
  background: rgba(192, 57, 43, 0.06);
}

.funnel-input--error:focus {
  outline-color: #C0392B;
  border-color: #C0392B;
}

.funnel-error-msg {
  display: none;
  align-items: center;
  gap: 6px;
  margin-top: 7px;
  color: #C0392B;
  font-size: 0.82rem;
  font-weight: 600;
}

.funnel-error-msg.is-visible {
  display: flex;
}

.funnel-actions {
  margin-top: 28px;
}

.funnel-continue {
  width: 100%;
}

.funnel-continue span[aria-hidden] {
  margin-left: 8px;
}

.funnel-back {
  display: inline-block;
  margin: 20px 0 0;
  background: none;
  border: none;
  padding: 0;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.84rem;
  cursor: pointer;
}

.funnel-back:hover {
  color: var(--text);
}

.funnel-calendar {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-raised);
  min-width: 320px;
  height: 700px;
}

.funnel-calendar iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.funnel-calendar__loading {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.funnel-calendar-fallback {
  text-align: center;
  margin-top: 14px;
  font-size: 0.86rem;
  color: var(--text-muted);
}

.funnel-calendar-fallback a {
  color: var(--gold-dark);
  font-weight: 600;
  text-decoration: underline;
}

/* ---------------- Social proof strip (bottom of page) ---------------- */

.funnel-proof {
  max-width: 900px;
  margin: 56px auto 0;
  padding: 0 24px;
}

.funnel-proof__eyebrow {
  text-align: center;
  margin-bottom: 24px;
}

.funnel-proof__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.funnel-proof__card {
  margin: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.funnel-proof__quote {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--text);
}

.funnel-proof__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.funnel-proof__name {
  font-weight: 700;
  font-size: 0.82rem;
}

.funnel-proof__shop {
  font-size: 0.78rem;
  color: var(--text-muted);
}

@media (max-width: 560px) {
  .funnel-card {
    padding: 32px 22px;
    border-radius: 20px;
  }
  .funnel-options {
    grid-template-columns: 1fr;
  }
  .funnel-calendar {
    height: 620px;
  }
  .funnel-proof {
    margin-top: 40px;
  }
  .funnel-proof__grid {
    grid-template-columns: 1fr;
  }
}
