/* ── AUDIT PAGE ── */

.audit-page {
  padding: 64px 48px 96px;
}

.audit-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* ── SPLIT LAYOUT ── */
.audit-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

/* ── LEFT COPY ── */
.audit-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.audit-title {
  font-size: clamp(28px, 3.2vw, 46px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 20px;
}

.audit-subtitle {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 40px;
}

.audit-what {
  margin-bottom: 40px;
}

.what-heading {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.audit-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.audit-bullets li {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-size: 15px;
  color: var(--fg);
  line-height: 1.5;
}

.bullet-accent {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  min-width: 24px;
  flex-shrink: 0;
}

/* proof block */
.audit-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.proof-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: #0f172a;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.proof-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 2px;
}

.proof-role {
  font-size: 12px;
  color: var(--accent);
  margin-bottom: 4px;
}

.proof-note {
  font-size: 13px;
  color: var(--muted);
}

/* ── RIGHT FORM ── */
.audit-form-wrap {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 40px 36px;
}

.form-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 14px;
  color: #fca5a5;
  margin-bottom: 24px;
  line-height: 1.5;
}

.audit-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg);
  letter-spacing: 0.01em;
}

.required {
  color: var(--accent);
  font-weight: 700;
}

.optional {
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
}

.form-group input,
.form-group select {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--card-border);
  border-radius: 6px;
  padding: 12px 14px;
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  transition: border-color 0.15s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394a3b8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-group input::placeholder {
  color: rgba(148, 163, 184, 0.5);
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--accent);
  background: rgba(245, 158, 11, 0.04);
}

/* select option colors for dark bg */
.form-group select option {
  background: #1e293b;
  color: var(--fg);
}

.audit-submit-btn {
  display: block;
  width: 100%;
  padding: 16px 24px;
  background: var(--accent);
  color: #0f172a;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-top: 4px;
}

.audit-submit-btn:hover {
  background: #fbbf24;
  transform: translateY(-1px);
}

.audit-submit-btn:active {
  transform: translateY(0);
}

.form-fine-print {
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
  margin-top: -4px;
}

/* ── SUCCESS STATE ── */
.audit-success {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 0;
}

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.15);
  border: 2px solid var(--accent);
  color: var(--accent);
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}

.audit-checklist {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 28px 32px;
  text-align: left;
  margin: 32px 0 0;
}

.checklist-heading {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.check-icon {
  color: var(--accent);
  font-weight: 700;
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.checklist li div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.checklist li strong {
  font-size: 15px;
  color: var(--fg);
  font-weight: 600;
}

.checklist li span {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .audit-page { padding: 40px 24px 80px; }
  .audit-split { grid-template-columns: 1fr; gap: 48px; }
  .audit-form-wrap { padding: 28px 24px; }
  .audit-success { padding: 20px 0; }
  .audit-checklist { padding: 24px 20px; }
}
