/* ===================== Free Audit page — additive styles ===================== */
/* Loaded after css/styles.css — reuses all brand tokens, .btn/.hero/.navbar/.site-footer
   classes from there. Everything below is new to this page only. */

/* Shorter hero than the homepage's (headline + subhead only, no scroll-hint clutter) */
.hero-short {
  min-height: 62vh;
}

.audit-hero-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-green-bright);
  margin-bottom: 16px;
}

/* ===================== Two-column: checklist + dashboard mockup ===================== */
.audit-proof {
  background: var(--color-cream);
  color: var(--color-ink);
  padding: 100px 48px;
}

.audit-proof-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 900px) {
  .audit-proof-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.audit-checklist-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-green-deep);
  margin-bottom: 12px;
}

.audit-checklist-title {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 700;
  margin-bottom: 28px;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}

.check-icon {
  flex-shrink: 0;
  color: var(--color-green);
  margin-top: 2px;
}

.check-item h3 {
  font-size: 16.5px;
  font-weight: 700;
  margin-bottom: 4px;
}

.check-item p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--color-ink-muted);
}

/* ===================== Dashboard mockup — 2 real sample-report crops, overlapping ===================== */
/* Real multi-section composites from 2 actual delivered audits (2026-08-12) — each stitches
   together several real chart/stat sections (KPI grid + bar chart + donut + search-volume
   chart for the website sample; content-mix + engagement-pattern sections for the social
   sample), all business-identifying text (names, addresses, handles) cropped out of frame.
   Website/GBP sample is light-theme, Social sample is dark-theme — deliberate contrast per
   Danny's call. Layered/overlapping treatment (back to the originally-approved direction,
   referencing Motiliti's staggered-card visual) — the dark Social card sits front-and-right,
   overlapping the light Website card's bottom-right corner. Scaled down from the earlier
   full-size stacked version (too large) but bigger than the original 3-tiny-card mockup
   (only 2 real reports now, so each can afford more room). */
.audit-dashboard-mockup {
  position: relative;
  min-height: 560px;
}

.sample-card {
  position: absolute;
  margin: 0;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.sample-card img {
  display: block;
  width: 100%;
  height: auto;
}

.sample-card figcaption {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 10px 14px;
}

.sample-card-website {
  top: 0;
  left: 0;
  z-index: 1;
  width: 420px;
  background: #ffffff;
  transform: rotate(-2deg);
}

.sample-card-website figcaption {
  color: var(--color-ink-muted);
  border-top: 1px solid #ececec;
}

.sample-card-social {
  top: 270px;
  left: 230px;
  z-index: 2;
  width: 340px;
  background: #0d0f08;
  transform: rotate(2deg);
}

.sample-card-social figcaption {
  color: rgba(255, 255, 255, 0.55);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 900px) {
  .audit-dashboard-mockup {
    min-height: 0;
  }
  .sample-card {
    position: static;
    transform: none !important;
    width: 100%;
    margin-bottom: 20px;
  }
}

/* ===================== Form section ===================== */
.audit-form-section {
  background: #000000;
  padding: 110px 48px;
}

.audit-form-inner {
  max-width: 640px;
  margin: 0 auto;
}

.audit-form-title {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
}

.audit-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 8px;
}

.field input {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 16px;
  color: #fff;
  font-family: var(--font-body);
}

.field input:focus {
  outline: none;
  border-color: var(--color-green);
}

.field input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  transition: opacity 0.2s ease;
}

.consent-row input[type='checkbox'] {
  margin-top: 4px;
  flex-shrink: 0;
}

.consent-row label {
  font-size: 12.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.6);
}

.consent-row a {
  color: var(--color-green-bright);
  text-decoration: underline;
}

.audit-submit-btn {
  width: 100%;
  border: none;
  cursor: pointer;
  margin-top: 8px;
}

.audit-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.audit-form-error {
  background: rgba(220, 38, 38, 0.12);
  border: 1px solid rgba(220, 38, 38, 0.4);
  color: #fca5a5;
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 14px;
}

.audit-form-success {
  text-align: center;
  color: #fff;
  font-size: 17px;
  line-height: 1.6;
  padding: 40px 0;
}
