/* ============================================================
   Express Website — lead-capture pages (free-mockup / free-audit / get-started)
   Layers on top of style.css base.
   ============================================================ */

/* ---------- Page hero ---------- */
.lp-hero { position: relative; padding: 76px 0 18px; overflow: hidden; text-align: center; }
.lp-hero::before {
  content: ""; position: absolute; top: -40%; left: 50%; transform: translateX(-50%);
  width: 1000px; height: 620px; pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(198,242,78,0.15), transparent 62%);
}
.lp-grid {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background-image: linear-gradient(var(--line-dark) 1px, transparent 1px), linear-gradient(90deg, var(--line-dark) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 20%, #000 30%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 20%, #000 30%, transparent 72%);
}
.lp-hero-inner { position: relative; }
.lp-hero h1 { font-size: clamp(40px, 6vw, 78px); line-height: 0.98; max-width: 16ch; margin: 22px auto 0; letter-spacing: -0.04em; }
.lp-hero h1 .accent { color: var(--accent); }
.lp-hero p.lead { font-size: clamp(17px, 1.7vw, 20px); color: var(--on-dark-mute); line-height: 1.55; max-width: 60ch; margin: 22px auto 0; }

/* ---------- Apply layout ---------- */
.apply { padding: 40px 0 110px; }
.apply-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 48px; align-items: start; }
.apply-info { position: sticky; top: 100px; }
.apply-info .apply-h { font-size: clamp(28px, 3vw, 38px); letter-spacing: -0.03em; line-height: 1.04; }
.apply-info > p { font-size: 17px; color: var(--on-dark-mute); line-height: 1.6; margin-top: 14px; max-width: 44ch; }

.receive { margin-top: 30px; }
.receive .lbl { font-family: var(--display); font-weight: 600; font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--on-dark-mute); }
.checklist { list-style: none; margin-top: 16px; display: grid; gap: 12px; }
.checklist li { display: flex; align-items: center; gap: 13px; font-size: 16.5px; font-weight: 500; }
.checklist .tick { flex-shrink: 0; width: 26px; height: 26px; border-radius: 8px; background: rgba(198,242,78,0.12); box-shadow: inset 0 0 0 1px rgba(198,242,78,0.3); display: grid; place-items: center; color: var(--accent); font-size: 13px; font-weight: 700; }

.trust { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.trust span { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600; color: var(--on-dark-mute); padding: 8px 14px; border-radius: 100px; box-shadow: inset 0 0 0 1px var(--line-dark); }
.trust span::before { content: "✓"; color: var(--accent); font-weight: 700; }

.cross { margin-top: 28px; padding: 24px; border-radius: 18px; background: var(--ink-2); box-shadow: inset 0 0 0 1px var(--line-dark); }
.cross h5 { font-size: 18px; letter-spacing: -0.02em; }
.cross p { font-size: 14.5px; color: var(--on-dark-mute); line-height: 1.5; margin-top: 7px; }
.cross a { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; font-family: var(--display); font-weight: 600; font-size: 15px; color: var(--accent); }
.cross a .arr { transition: transform .18s ease; }
.cross a:hover .arr { transform: translateX(3px); }

/* ---------- Form ---------- */
.form-card { background: var(--ink-2); border-radius: 24px; padding: 38px; box-shadow: inset 0 0 0 1px var(--line-dark), 0 50px 90px -50px rgba(0,0,0,0.7); }
.form-card > .fc-head { margin-bottom: 26px; }
.form-card .fc-head h3 { font-size: 24px; letter-spacing: -0.02em; }
.form-card .fc-head p { font-size: 15px; color: var(--on-dark-mute); line-height: 1.5; margin-top: 8px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: var(--display); font-weight: 600; font-size: 14px; letter-spacing: -0.01em; }
.field label .req { color: var(--accent); margin-left: 2px; }
.field label .opt { color: var(--on-dark-mute); font-weight: 500; }
.field input, .field textarea, .field select {
  width: 100%; background: var(--ink); color: var(--on-dark);
  border-radius: 12px; padding: 14px 16px; font-family: var(--body); font-size: 15.5px;
  box-shadow: inset 0 0 0 1px var(--line-dark); transition: box-shadow .16s ease, background .16s ease; resize: vertical; border: none;
}
.field textarea { min-height: 96px; line-height: 1.5; }
.field input::placeholder, .field textarea::placeholder { color: rgba(244,244,240,0.34); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; background: #15161A; box-shadow: inset 0 0 0 1.5px var(--accent), 0 0 0 4px rgba(198,242,78,0.14); }

.dropzone {
  grid-column: 1 / -1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  padding: 30px; border-radius: 14px; background: var(--ink);
  box-shadow: inset 0 0 0 1.5px var(--line-dark); cursor: pointer; text-align: center;
  transition: box-shadow .16s ease, background .16s ease;
}
.dropzone:hover { box-shadow: inset 0 0 0 1.5px rgba(198,242,78,0.45); background: #15161A; }
.dropzone .dz-ic { width: 44px; height: 44px; border-radius: 12px; background: rgba(198,242,78,0.12); box-shadow: inset 0 0 0 1px rgba(198,242,78,0.3); display: grid; place-items: center; color: var(--accent); }
.dropzone .dz-main { font-family: var(--display); font-weight: 600; font-size: 15px; }
.dropzone .dz-main u { color: var(--accent); text-underline-offset: 3px; }
.dropzone .dz-sub { font-size: 12.5px; color: var(--on-dark-mute); }
.dropzone input { display: none; }
.dz-files { grid-column: 1/-1; font-size: 13px; color: var(--accent); font-weight: 600; }

.form-foot { margin-top: 24px; }
.privacy { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--on-dark-mute); margin-top: 16px; justify-content: center; }
.privacy svg { width: 15px; height: 15px; color: var(--accent); }

/* success */
.success { display: none; text-align: center; padding: 28px 10px; }
.success.show { display: block; }
.success .ok { width: 72px; height: 72px; margin: 0 auto 22px; border-radius: 50%; background: rgba(198,242,78,0.14); box-shadow: inset 0 0 0 1.5px rgba(198,242,78,0.4); display: grid; place-items: center; color: var(--accent); font-size: 34px; }
.success h3 { font-size: 28px; letter-spacing: -0.03em; }
.success p { font-size: 16px; color: var(--on-dark-mute); line-height: 1.55; margin-top: 12px; max-width: 38ch; margin-left: auto; margin-right: auto; }
.form-fields.hide { display: none; }

/* ---------- Toggle pills (get-started) ---------- */
.path-toggle { display: flex; justify-content: center; margin-bottom: 40px; }
.path-pills { display: inline-flex; padding: 5px; border-radius: 100px; background: rgba(255,255,255,0.05); box-shadow: inset 0 0 0 1px var(--line-dark); gap: 4px; }
.path-pills button { font-family: var(--display); font-weight: 600; font-size: 15.5px; padding: 12px 24px; border-radius: 100px; color: var(--on-dark-mute); transition: all .2s ease; letter-spacing: -0.01em; }
.path-pills button.active { background: var(--accent); color: var(--accent-ink); }
.path-panel { display: none; }
.path-panel.active { display: block; }

/* ---------- Contact Form 7 styling ---------- */
.wpcf7 .form-grid { margin-top: 4px; }
.wpcf7-form p { margin: 0 0 16px; }
.wpcf7-form label { display: block; font-family: var(--display); font-weight: 600; font-size: 14px; margin-bottom: 8px; }
.wpcf7-form input[type=text], .wpcf7-form input[type=email], .wpcf7-form input[type=tel],
.wpcf7-form input[type=url], .wpcf7-form textarea, .wpcf7-form select {
  width: 100%; background: var(--ink); color: var(--on-dark); border: none;
  border-radius: 12px; padding: 14px 16px; font-family: var(--body); font-size: 15.5px;
  box-shadow: inset 0 0 0 1px var(--line-dark); transition: box-shadow .16s ease;
}
.wpcf7-form input:focus, .wpcf7-form textarea:focus, .wpcf7-form select:focus { outline: none; box-shadow: inset 0 0 0 1.5px var(--accent), 0 0 0 4px rgba(198,242,78,0.14); }
.wpcf7-form input[type=submit], .wpcf7-form .wpcf7-submit {
  width: 100%; background: var(--accent); color: var(--accent-ink); cursor: pointer;
  font-family: var(--display); font-weight: 600; font-size: 16px; padding: 16px 26px; border-radius: 100px; box-shadow: 0 8px 30px -8px rgba(198,242,78,0.5); transition: transform .18s ease, box-shadow .18s ease;
}
.wpcf7-form input[type=submit]:hover { transform: translateY(-2px); box-shadow: 0 14px 40px -8px rgba(198,242,78,0.7); }
.wpcf7-form input[type=file] { width: 100%; color: var(--on-dark-mute); font-size: 14px; }
.wpcf7 .wpcf7-response-output { border-radius: 12px; border-color: var(--line-dark) !important; color: var(--on-dark); margin: 18px 0 0; font-size: 14px; }
.wpcf7-not-valid-tip { color: #FF8B73; font-size: 13px; }

@media (max-width: 980px) {
  .apply-grid { grid-template-columns: 1fr; gap: 36px; }
  .apply-info { position: static; }
}
@media (max-width: 620px) {
  .form-grid { grid-template-columns: 1fr; }
  .form-card { padding: 26px 22px; }
  .apply { padding: 28px 0 80px; }
}
