/* funnel-test/funnel.css — styles for the pattern block (.funnel-doors), the
   "How training works" strip (.how-strip) and the Request a Floor form.
   Loaded after /styles.css?v=8 on every funnel-test page; reuses that file's
   CSS variables (--bg, --bg-card, --border, --text, --text-muted, --text-dim,
   --gold, --gold-dim, --crimson) and its .btn-primary / .btn-outline classes
   rather than redefining them. No new brand colors are introduced here.
*/

/* ── Pattern block: appended to every program page before the footer ── */
.funnel-doors {
  padding: 88px 24px;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.funnel-doors-inner {
  max-width: 760px;
  margin: 0 auto;
}
.funnel-doors-inner .section-label {
  display: block;
  margin-bottom: 14px;
}
.funnel-doors-inner h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: 16px;
  color: var(--text);
}
.funnel-doors-inner > p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto 28px;
}
.funnel-doors-inner > .btn-primary {
  margin-bottom: 40px;
}

.funnel-request {
  margin: 0 auto 32px;
  max-width: 560px;
  padding: 32px 28px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.funnel-request h3 {
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 10px;
}
.funnel-request p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 20px;
}

.funnel-exit {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 8px;
}
.funnel-exit a {
  color: var(--gold-dim);
  text-decoration: underline;
}
.funnel-exit a:hover { color: var(--gold); }

@media (max-width: 600px) {
  .funnel-doors { padding: 56px 20px; }
  .funnel-request { padding: 26px 20px; }
}

/* ── How Training Works strip (index.html, three cards) ── */
.how-strip {
  padding: 88px 24px;
  background: var(--bg);
}
.how-strip-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.how-strip-header {
  text-align: center;
  margin-bottom: 48px;
}
.how-strip-header .section-label {
  display: block;
  margin-bottom: 12px;
}
.how-strip-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--text);
}
.how-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.how-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 28px;
  text-align: left;
  text-decoration: none;
  display: block;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.how-card:hover { transform: translateY(-4px); border-color: var(--gold-dim); }
.how-card .how-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(201,168,76,0.12);
  border: 1px solid var(--gold-dim);
  color: var(--gold);
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  margin-bottom: 18px;
}
.how-card h3 {
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 10px;
}
.how-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 16px;
}
.how-card .how-cta {
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

@media (max-width: 820px) {
  .how-strip-grid { grid-template-columns: 1fr; gap: 16px; }
  .how-strip { padding: 56px 20px; }
}

/* ── Request a Floor form (request-a-floor.html) ── */
.funnel-form-section {
  padding: 0 24px 88px;
}
.funnel-form-wrap {
  max-width: 560px;
  margin: 0 auto;
  padding: 36px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
}
.funnel-form-wrap label {
  display: block;
  margin: 0 0 16px;
}
.funnel-form-wrap .funnel-field-label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.funnel-form-wrap input,
.funnel-form-wrap select {
  width: 100%;
  box-sizing: border-box;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  padding: 12px 14px;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}
.funnel-form-wrap input:focus,
.funnel-form-wrap select:focus { border-color: var(--gold); }
.funnel-form-wrap .funnel-hp {
  position: absolute;
  left: -9999px;
  top: -9999px;
  height: 0;
  overflow: hidden;
}
.funnel-form-wrap button {
  display: block;
  width: 100%;
  margin-top: 4px;
}
.funnel-form-err {
  display: none;
  color: #ff9d87;
  font-size: 0.88rem;
  margin: 12px 0 0;
}
.funnel-form-success {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  padding: 36px 28px;
  background: var(--bg-card);
  border: 1px solid var(--gold-dim);
  border-radius: 14px;
}
.funnel-form-success h3 {
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.funnel-form-success p {
  color: var(--text-muted);
  margin-bottom: 24px;
}
.funnel-form-success .funnel-form-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .funnel-form-wrap { padding: 26px 20px; }
}

.funnel-host-line{margin-top:18px;font-size:.95rem;color:var(--text-muted,#9A9587)}.funnel-host-line a{color:var(--gold,#C9A84C);text-decoration:underline}

.funnel-fine { font-size: 0.8rem; color: var(--text-muted, rgba(240,237,232,0.6)); margin: 10px 0 0; line-height: 1.5; }
.funnel-fine a { color: inherit; text-decoration: underline; }

/* Native dropdown lists: Chrome and Edge paint the option list on white and inherit the light text, so the choices vanish (2026-09-14). */
select { color-scheme: dark; }
select option { background: #121316; color: #F0EDE8; }
