/* =====================================================================
   Growth Fit Review page - builds on the v2 design system.
   Multi-step qualification form, comma-forward copy, no long dashes.
   ===================================================================== */
/* Both imported here at the same level (not nested) so the browser fetches
   them in parallel instead of discovering one only after parsing the other. */
@import url('styles.css');
@import url('styles-v2.css');

.gfr { padding-top: 130px; }
.gfr-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 48px; align-items: start; }

/* Left column: value props */
.val-block { margin-bottom: 34px; }
.val-block h3 { font-size: 1.15rem; margin-bottom: 4px; }
.val-list { list-style: none; margin: 14px 0 0; padding: 0; display: flex; flex-direction: column; gap: 13px; }
.val-list li { display: flex; gap: 11px; align-items: flex-start; color: var(--ink-2); }
.val-list .mk { flex: none; width: 22px; height: 22px; border-radius: 6px; background: var(--accent); color: #1a1205; display: grid; place-items: center; font-size: 12px; font-weight: 700; margin-top: 2px; }
.val-list.no .mk { background: #e3e6ea; color: #5b6470; border-radius: 50%; }
.steps-next { list-style: none; margin: 14px 0 0; padding: 0; counter-reset: s; display: flex; flex-direction: column; gap: 13px; }
.steps-next li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-2); counter-increment: s; }
.steps-next li::before { content: counter(s); flex: none; width: 24px; height: 24px; border-radius: 50%; background: var(--accent-soft); color: var(--accent-600); font-family: var(--font-mono); font-weight: 700; font-size: 12px; display: grid; place-items: center; margin-top: 1px; }

/* Form card */
.form-card { background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-float); padding: 32px; }
.form-narrow { max-width: 620px; margin: 0 auto; }
.form-card h2 { font-size: 1.4rem; margin-bottom: 20px; }

/* Progress */
.progress { margin-bottom: 26px; }
.progress-track { height: 6px; background: var(--border); border-radius: 50px; overflow: hidden; }
.progress-bar { height: 100%; background: var(--accent); width: 33.33%; border-radius: 50px; transition: width 0.3s var(--ease); }
.progress-steps { display: flex; justify-content: space-between; margin-top: 10px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.progress-steps span.active { color: var(--accent-600); font-weight: 700; }

/* Steps */
.form-step { display: none; }
.form-step.active { display: block; animation: stepin 0.25s var(--ease); }
@keyframes stepin { from { opacity: 0; transform: translateX(8px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .form-step.active { animation: none; } }

/* Fields */
.gfr-form .field { margin-bottom: 18px; }
.flabel { display: block; font-weight: 600; font-size: 0.92rem; margin-bottom: 8px; color: var(--ink); }
.flabel .optional { color: var(--muted); font-weight: 400; }
.gfr-form input[type="text"],
.gfr-form input[type="email"],
.gfr-form input[type="tel"],
.gfr-form input[type="url"],
.gfr-form select,
.gfr-form textarea {
  width: 100%; padding: 13px 15px; border: 1px solid var(--border-strong); border-radius: var(--radius-sm);
  font-family: inherit; font-size: 1rem; color: var(--ink); background: #fbfbfc;
}
.gfr-form textarea { min-height: 96px; resize: vertical; }
.gfr-form input:focus, .gfr-form select:focus, .gfr-form textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.gfr-form .err { border-color: #e5484d; }
.field-error { color: #c0392b; font-size: 0.82rem; margin-top: 6px; display: none; }
.field-error.show { display: block; }
.char-count { font-family: var(--font-mono); font-size: 11px; color: var(--muted); text-align: right; margin-top: 6px; }

/* Choice pills */
.choices { display: grid; gap: 10px; }
.choices.cols-2 { grid-template-columns: 1fr 1fr; }
.choice { position: relative; }
.choice input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.choice span { display: block; padding: 12px 14px; border: 1px solid var(--border-strong); border-radius: var(--radius-sm); font-size: 0.95rem; color: var(--ink-2); transition: 0.15s var(--ease); text-align: center; }
.choice input:checked + span { border-color: var(--accent); background: var(--accent-soft); color: var(--ink); font-weight: 600; }
.choice input:focus-visible + span { outline: 3px solid var(--accent); outline-offset: 2px; }

/* Consent */
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: 0.88rem; color: var(--ink-2); margin-top: 6px; }
.consent input { margin-top: 3px; flex: none; width: 18px; height: 18px; accent-color: var(--accent); }
.consent a { color: var(--accent-600); text-decoration: underline; }

/* Nav buttons */
.form-nav { display: flex; gap: 12px; margin-top: 10px; }
.form-nav .btn { flex: 1; }
.btn-ghost { background: transparent; border: 1px solid var(--border-strong); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); }
.form-note { margin: 14px 0 0; font-size: 0.82rem; color: var(--muted); text-align: center; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Thank you */
.thankyou { display: none; text-align: center; padding: 12px 0; }
.thankyou.show { display: block; }
.thankyou .tick { width: 66px; height: 66px; border-radius: 50%; background: var(--accent-soft); color: var(--accent-600); display: grid; place-items: center; margin: 0 auto 20px; font-size: 32px; font-weight: 700; }
.thankyou h2 { margin-bottom: 10px; }
.thankyou p { color: var(--ink-2); margin: 0 auto; max-width: 40ch; }
.cal-slot { margin-top: 24px; border: 1px dashed var(--border-strong); border-radius: var(--radius); padding: 30px; color: var(--muted); font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em; }

@media (max-width: 960px) { .gfr-grid { grid-template-columns: 1fr; gap: 36px; } }
