/* ─── Audit Hero ─── */

.audit-hero {
  padding-top: calc(var(--nav-height) + var(--space-24));
  padding-bottom: var(--space-16);
  position: relative;
  background: var(--gray-950) url('../assets/audit-hero.jpg') center center / cover no-repeat;
}

.audit-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(9, 9, 11, 0.78) 0%,
    rgba(9, 9, 11, 0.70) 100%
  );
}

.audit-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.08);
  z-index: 1;
}

.audit-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--space-12);
  align-items: start;
}

.audit-hero .label {
  color: #C9A84C;
}

.audit-hero__title {
  font-size: var(--font-size-4xl);
  margin-bottom: var(--space-5);
  color: var(--color-white);
}

.audit-hero__subtitle {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
  color: rgba(255, 255, 255, 0.72);
  max-width: 560px;
}

.audit-hero__meta {
  padding: var(--space-6);
  background-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
}

.audit-hero__meta-item {
  padding: var(--space-3) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.audit-hero__meta-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.audit-hero__meta-item:first-child {
  padding-top: 0;
}

.audit-hero__meta-label {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  letter-spacing: var(--letter-spacing-wider);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2px;
}

.audit-hero__meta-value {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-white);
}

/* ─── Audit Purpose ─── */

.audit-purpose__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
}

.audit-purpose__intro {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-secondary);
}

.audit-purpose__intro strong {
  color: var(--color-text-heading);
  font-weight: var(--font-weight-semibold);
}

.audit-objectives h3 {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  letter-spacing: var(--letter-spacing-wider);
  text-transform: uppercase;
  color: var(--color-text-tertiary);
  margin-bottom: var(--space-5);
}

.audit-objective {
  display: flex;
  gap: var(--space-3);
  padding: var(--space-4) 0;
  border-top: 1px solid var(--color-border);
}

.audit-objective:last-child {
  border-bottom: 1px solid var(--color-border);
}

.audit-objective__marker {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--color-accent);
  border-radius: 50%;
  margin-top: 3px;
  position: relative;
}

.audit-objective__marker::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  background-color: var(--color-accent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.audit-objective__text {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-secondary);
}

/* ─── Deliverables ─── */

.audit-deliverables__header {
  margin-bottom: var(--space-10);
}

.audit-deliverables__header p {
  margin-top: var(--space-3);
}

.audit-deliverable {
  padding: var(--space-6);
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
}

.audit-deliverable::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background-color: var(--color-accent);
}

.audit-deliverable__number {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  color: var(--color-accent);
  letter-spacing: var(--letter-spacing-wider);
  margin-bottom: var(--space-2);
}

.audit-deliverable__title {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-heading);
  margin-bottom: var(--space-2);
  line-height: var(--line-height-snug);
}

.audit-deliverable__desc {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-secondary);
}

/* ─── Standalone ─── */

.audit-standalone {
  text-align: center;
  max-width: var(--max-width-narrow);
  margin: 0 auto;
}

.audit-standalone p {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-secondary);
  margin: 0 auto var(--space-8);
}

/* ─── Responsive ─── */

@media (max-width: 1200px) {
  .audit-hero__title { font-size: var(--font-size-3xl); }
}

@media (max-width: 768px) {
  .audit-hero {
    padding-top: calc(var(--nav-height) + var(--space-12));
    padding-bottom: var(--space-8);
  }

  .audit-hero__grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .audit-hero__title { font-size: var(--font-size-2xl); }
  .audit-hero__subtitle { font-size: var(--font-size-base); }

  .audit-purpose__grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .audit-purpose__intro {
    font-size: var(--font-size-base);
  }

  .audit-deliverables__header {
    margin-bottom: var(--space-8);
  }

  .audit-deliverable {
    padding: var(--space-5);
  }

  .audit-standalone p {
    font-size: var(--font-size-base);
  }
}

@media (max-width: 480px) {
  .audit-hero {
    padding-top: calc(var(--nav-height) + var(--space-10));
    padding-bottom: var(--space-6);
  }

  .audit-hero__title { font-size: var(--font-size-xl); }

  .audit-hero__meta {
    padding: var(--space-4);
  }

  .audit-deliverable {
    padding: var(--space-4);
  }
}
