/* ═══════════════════════════════════════════════
   FREE AUDIT PAGE — Sharp Agency
════════════════════════════════════════════════ */

/* ── Hero ────────────────────────────────────── */
.audit-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--nav-h) + 70px) 0 80px;
  background: var(--bg);
}

/* Dot-grid texture (replaces stars/nebula/grid/scanline) */
.audit-hero__bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 28% 35%, #000 0%, transparent 72%);
  mask-image: radial-gradient(ellipse 70% 60% at 28% 35%, #000 0%, transparent 72%);
}

/* ── Layout ──────────────────────────────────── */
.audit-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  position: relative; z-index: 1;
}

/* ── Left — Pitch ────────────────────────────── */
.audit-hero__left .sp-back {
  display: inline-flex;
  margin-bottom: 20px;
}
.audit-hero__left .sys-label {
  display: inline-flex;
  margin-bottom: 16px;
}
.audit-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.2vw, 3.8rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 20px;
}
.audit-title__line { display: block; }
.audit-title__accent { color: var(--accent); }

.audit-hero__sub {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}

/* Checklist */
.audit-checklist {
  display: flex; flex-direction: column; gap: 20px;
  margin-bottom: 32px;
}
.audit-check {
  display: flex; gap: 14px; align-items: flex-start;
}
.audit-check__icon {
  width: 32px; height: 32px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-4);
  border: 1px solid var(--border-2);
  border-radius: 8px; margin-top: 1px;
  color: var(--accent);
}
.audit-check strong {
  display: block;
  font-family: var(--font-ui); font-size: 14px;
  font-weight: 600; color: var(--text);
  margin-bottom: 3px;
}
.audit-check span {
  font-family: var(--font-ui); font-size: 13px;
  color: var(--text-3); line-height: 1.6;
}

/* Note */
.audit-hero__note {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 11px;
  color: var(--text-4); letter-spacing: 0.04em;
  line-height: 1.5;
}
.audit-note__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
}

/* ── Right — Form Panel ──────────────────────── */
.audit-form-panel {
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.55);
}

.audit-form-panel__header {
  display: flex; align-items: center; gap: 7px;
  padding: 14px 20px;
  background: var(--bg-4);
  border-bottom: 1px solid var(--border);
}
.panel__dots { display: flex; gap: 6px; }
.panel__dot { width: 11px; height: 11px; border-radius: 50%; }
.panel__dot--red    { background: #ff5f57; }
.panel__dot--yellow { background: #febc2e; }
.panel__dot--green  { background: #28c840; }
.panel__title {
  font-family: var(--font-mono); font-size: 10px;
  color: var(--text-3); letter-spacing: 0.08em; margin-left: 8px;
}

.audit-form { padding: 24px 24px 28px; }

/* ── Responsive ──────────────────────────────── */
@media (max-width: 1024px) {
  .audit-hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .audit-hero { padding-bottom: 60px; min-height: auto; }
}
@media (max-width: 768px) {
  .audit-hero__title { font-size: 2rem; }
  .audit-form { padding: 20px; }
}

/* ── Form: honeypot + status (FormSubmit) ──── */
.form__honey {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  opacity: 0; pointer-events: none;
}
.form__status {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.02em;
  text-align: center;
  color: var(--accent);
  margin-top: 12px;
  min-height: 16px;
}

/* ── Newsletter opt-in checkbox ─────────────── */
.form__check {
  display: flex; align-items: flex-start; gap: 10px;
  margin: 4px 0 4px;
}
.form__check input[type="checkbox"] {
  width: 16px; height: 16px;
  margin-top: 1px;
  accent-color: var(--accent);
  flex-shrink: 0;
  cursor: pointer;
}
.form__check label {
  font-family: var(--font-ui);
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--text-3);
  cursor: pointer;
}
