/* ═══════════════════════════════════════════════════════════════
   GOHOWLEVEL — free Q&A landing page
   Aesthetic: light, clean, playful (matches the colorful wordmark).
   Sibling of the SomeWhiteLabel site's system; same type stack,
   inverted canvas. Accent = logo sky-blue with green/orange support.
   ═══════════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:    #1e88e5;
  --blue-d:  #1565c0;
  --blue-bg: #e8f2fc;
  --green:   #7cc242;
  --orange:  #f5a623;
  --canvas:  #f7fafd;
  --surface: #ffffff;
  --border:  #dbe6f0;
  --border-d:#c3d4e4;
  --ink:     #12202c;
  --ink-2:   #4a5e70;
  --ink-3:   #7d93a6;
  --mono:    'DM Mono', 'Courier New', monospace;
  --sans:    'DM Sans', system-ui, sans-serif;
  --display: 'Inter', system-ui, -apple-system, sans-serif;
  --radius:  10px;
  --radius-l:18px;
  --max-w:   1140px;
  --shadow:  0 18px 50px rgba(18, 32, 44, 0.10);
}

html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--canvas); color: var(--ink); font-family: var(--sans); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 24px; border-radius: 999px; font-size: 0.95rem; font-weight: 700; transition: all .18s ease; white-space: nowrap; }
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 6px 18px rgba(30, 136, 229, 0.35); }
.btn-primary:hover { background: var(--blue-d); transform: translateY(-1px); }
.btn-ghost { border: 2px solid var(--border-d); color: var(--ink-2); background: var(--surface); }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #1f3242; }
.btn-full { width: 100%; }
.btn-loading { display: none; }
.btn.loading .btn-text { display: none; }
.btn.loading .btn-loading { display: inline; }
.btn:disabled { opacity: 0.65; cursor: wait; }

/* ── NAV ── */
.nav { position: sticky; top: 0; z-index: 50; display: flex; align-items: center; gap: 28px; padding: 10px 28px; background: rgba(247, 250, 253, 0.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); }
.nav-logo img { width: 64px; height: auto; }
.nav-links { display: flex; gap: 22px; margin-left: auto; font-size: 0.92rem; font-weight: 500; color: var(--ink-2); }
.nav-links a:hover { color: var(--blue); }
.nav-agency { color: var(--blue); font-weight: 700; }
@media (max-width: 720px) { .nav-links { display: none; } .nav { justify-content: space-between; } }

/* ── HERO + ASK CARD ── */
.hero { padding: 72px 0 96px; background:
  radial-gradient(900px 500px at 8% -10%, rgba(30,136,229,0.10), transparent 60%),
  radial-gradient(700px 420px at 96% 6%, rgba(124,194,66,0.12), transparent 55%); }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: start; }
@media (max-width: 920px) { .hero-grid { grid-template-columns: 1fr; } }

.hero-badge { display: inline-flex; align-items: center; gap: 9px; padding: 8px 16px; border-radius: 999px; background: var(--blue-bg); border: 1px solid #bcd9f4; color: var(--blue-d); font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.04em; }
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
.hero h1 { margin-top: 22px; font-family: var(--display); font-weight: 900; font-size: clamp(2.2rem, 4.6vw, 3.4rem); line-height: 1.06; letter-spacing: -0.02em; }
.hero h1 em { font-style: normal; color: var(--blue); }
.hero-sub { margin-top: 20px; font-size: 1.1rem; color: var(--ink-2); max-width: 460px; }
.hero-points { margin-top: 30px; display: grid; gap: 12px; }
.hp { display: flex; align-items: center; gap: 12px; font-size: 0.98rem; color: var(--ink-2); }
.hp-ico { width: 30px; height: 30px; flex: none; display: grid; place-items: center; border-radius: 50%; font-size: 0.85rem; font-weight: 700; color: #fff; }
.hp-ico.i-blue { background: var(--blue); }
.hp-ico.i-green { background: var(--green); }
.hp-ico.i-orange { background: var(--orange); }

.ask-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-l); box-shadow: var(--shadow); padding: 34px; }
.ask-card h2 { font-family: var(--display); font-weight: 800; font-size: 1.4rem; margin-bottom: 18px; }

/* ── FORM ── */
.form-row { margin-bottom: 16px; }
.form-row label, .form-row legend { display: block; font-size: 0.85rem; font-weight: 700; color: var(--ink-2); margin-bottom: 6px; }
.form-row .opt { color: var(--ink-3); font-weight: 400; }
.req { color: var(--blue); }
input[type="text"], input[type="email"], input[type="tel"], textarea {
  width: 100%; background: var(--canvas); border: 1px solid var(--border-d); border-radius: var(--radius);
  padding: 11px 14px; font-size: 0.95rem; color: var(--ink); outline: none; transition: border-color .15s ease, box-shadow .15s ease;
}
textarea { resize: vertical; min-height: 96px; }
input:focus, textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(30,136,229,0.15); }
input.error, textarea.error { border-color: #e5484d; }

.mention { border: none; }
.mention-opts { display: flex; flex-wrap: wrap; gap: 8px; }
.mention-opts label { display: inline-flex; align-items: center; gap: 7px; margin: 0; padding: 8px 14px; border: 1px solid var(--border-d); border-radius: 999px; font-size: 0.85rem; font-weight: 500; color: var(--ink-2); cursor: pointer; transition: all .15s ease; }
.mention-opts label:has(input:checked) { border-color: var(--blue); background: var(--blue-bg); color: var(--blue-d); }
.mention-opts input { accent-color: var(--blue); }

.consent-row .consent { display: flex; gap: 10px; align-items: flex-start; cursor: pointer; font-weight: 400; }
.consent-row input { margin-top: 3px; flex: none; accent-color: var(--blue); }
.consent-row span { font-size: 0.76rem; line-height: 1.5; color: var(--ink-3); }
.consent-row a { text-decoration: underline; }

.form-status { min-height: 20px; font-size: 0.85rem; color: #e5484d; margin-bottom: 8px; }
.form-fineprint { margin-top: 12px; text-align: center; font-size: 0.8rem; color: var(--ink-3); }

.form-success { text-align: center; padding: 26px 8px; }
.form-success .fs-icon { width: 56px; height: 56px; margin: 0 auto 12px; display: grid; place-items: center; border-radius: 50%; background: var(--green); color: #fff; font-size: 1.6rem; font-weight: 700; }
.form-success h3 { font-family: var(--display); font-weight: 800; font-size: 1.3rem; margin-bottom: 8px; }
.form-success p { color: var(--ink-2); font-size: 0.95rem; margin-bottom: 18px; }

/* ── HOW IT WORKS ── */
.how { padding: 88px 0; background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-h2 { font-family: var(--display); font-weight: 900; font-size: clamp(1.6rem, 3vw, 2.2rem); letter-spacing: -0.02em; text-align: center; }
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 46px; }
@media (max-width: 860px) { .how-grid { grid-template-columns: 1fr; } }
.how-step { background: var(--canvas); border: 1px solid var(--border); border-radius: var(--radius-l); padding: 30px; }
.how-num { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--blue); color: #fff; font-family: var(--display); font-weight: 800; font-size: 1.1rem; margin-bottom: 16px; }
.how-step:nth-child(2) .how-num { background: var(--green); }
.how-step:nth-child(3) .how-num { background: var(--orange); }
.how-step h3 { font-family: var(--display); font-weight: 800; font-size: 1.1rem; margin-bottom: 8px; }
.how-step p { color: var(--ink-2); font-size: 0.95rem; }
.how-cta { text-align: center; margin-top: 40px; }

/* ── AGENCY BAND ── */
.agency-band { padding: 80px 0; background: linear-gradient(135deg, #10222f, #173a52); color: #eef4f9; }
.agency-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.agency-eyebrow { font-family: var(--mono); font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; color: #6fc1ff; margin-bottom: 10px; }
.agency-band h2 { font-family: var(--display); font-weight: 900; font-size: clamp(1.5rem, 3vw, 2.1rem); letter-spacing: -0.02em; max-width: 560px; }
.agency-band h2 em { font-style: normal; color: #6fc1ff; }
.agency-band p { margin-top: 14px; color: #b9cbda; max-width: 560px; }
.agency-band .btn-dark { background: #fff; color: var(--ink); font-weight: 800; }
.agency-band .btn-dark:hover { background: #e8f2fc; }
.agency-cta { display: flex; flex-direction: column; align-items: center; gap: 20px; flex: none; }
.agency-logo { width: 220px; height: auto; filter: drop-shadow(0 14px 32px rgba(0,0,0,0.45)); transition: transform .18s ease; }
.agency-cta a:hover .agency-logo { transform: scale(1.04); }

/* ── FOOTER ── */
.footer { padding: 34px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.footer-copy { font-size: 0.8rem; color: var(--ink-3); }
.footer-links { display: flex; gap: 18px; font-size: 0.85rem; color: var(--ink-2); }
.footer-links a:hover { color: var(--blue); }

/* ── Hero logo (SomeWhiteLabel mark, above the pill; nav is logo-free) ── */
.hero-logo { width: 300px; max-width: 78%; height: auto; margin-bottom: 22px; filter: drop-shadow(0 10px 26px rgba(18,32,44,0.14)); }
@media (max-width: 920px) { .hero-logo { width: 240px; } }
