/*
 * audit.css — Yogel Free Site Audit Landing Page
 * Design: Navy #003d7a | Dark Navy #003d7a | Yellow #e9b328
 * Fonts: Montserrat (headings) | Inter (body)
 * Philosophy: Conversion-focused, honest, no distractions.
 * Sections alternate light/dark for visual rhythm.
 */

/* ============================================================
   AUDIT NAV (minimal — logo + phone only)
============================================================ */
.audit-nav {
  background: #ffffff;
  border-bottom: 1px solid #e8edf3;
  position: sticky;
  top: 0;
  z-index: 100;
}

.audit-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.audit-nav__logo img {
  height: 38px;
  width: auto;
  display: block;
}

.audit-nav__phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #003d7a;
  text-decoration: none;
  transition: color 0.15s ease;
}

.audit-nav__phone:hover {
  color: #e9b328;
}

/* ============================================================
   HERO
============================================================ */
.audit-hero {
  background: #003d7a;
  padding: 5rem 0 4.5rem;
}

.audit-hero__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

@media (max-width: 768px) {
  .audit-hero__inner {
    flex-direction: column;
    text-align: center;
  }
  .audit-hero__copy {
    order: 1;
  }
  .audit-hero__badge {
    order: 2;
  }
}

.audit-hero__copy {
  max-width: 600px;
}

.audit-hero__heading {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.15;
  margin: 0.75rem 0 1.25rem;
}

.audit-hero__sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 520px;
}

@media (max-width: 768px) {
  .audit-hero__sub {
    margin-left: auto;
    margin-right: auto;
  }
}

.audit-hero__cta {
  font-size: 1rem;
  padding: 0.9rem 2rem;
}

/* Badge */
.audit-hero__badge {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .audit-hero__badge {
    order: 3;
    margin: 0.5rem auto 0;
  }
  .audit-hero__badge svg {
    width: 140px;
    height: 140px;
  }
}

.audit-badge {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: #e9b328;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 0 0 8px rgba(233, 179, 40, 0.2);
}

.audit-badge__top {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: #003d7a;
  line-height: 1;
}

.audit-badge__mid {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #003d7a;
  line-height: 1.2;
}

.audit-badge__bot {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(0, 30, 60, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 0.15rem;
}

/* ============================================================
   SHARED SECTION TYPOGRAPHY
============================================================ */
.audit-section-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #003d7a;
  line-height: 1.2;
  margin: 0.6rem 0 1rem;
}

.audit-section-sub {
  font-size: 1rem;
  color: #4a5568;
  line-height: 1.75;
  max-width: 600px;
  margin-bottom: 3rem;
}

.text--navy-accent {
  color: #003d7a;
}

.label--navy {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #003d7a;
  background: rgba(0, 61, 122, 0.08);
  border: 1px solid rgba(0, 61, 122, 0.18);
  padding: 0.25rem 0.75rem;
  border-radius: 3px;
}

/* ============================================================
   WHAT HAPPENS — STEPS (light bg)
============================================================ */
.audit-steps-section {
  background: #f4f6f9;
  padding: 5rem 0;
}

.audit-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 3px solid #e9b328;
  padding-left: 0;
  margin-left: 1rem;
}

.audit-step {
  display: flex;
  gap: 2rem;
  padding: 2rem 0 2rem 2.5rem;
  position: relative;
}

.audit-step::before {
  content: '';
  position: absolute;
  left: -7px;
  top: 2.25rem;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #e9b328;
  border: 2px solid #ffffff;
  box-shadow: 0 0 0 2px #e9b328;
}

.audit-step__num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(0, 61, 122, 0.12);
  line-height: 1;
  flex-shrink: 0;
  width: 3rem;
  padding-top: 0.15rem;
}

.audit-step__body h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #003d7a;
  margin-bottom: 0.5rem;
}

.audit-step__body p {
  font-size: 0.95rem;
  color: #4a5568;
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   WHO THIS IS FOR (dark bg)
============================================================ */
.audit-who-section {
  background: #003d7a;
  padding: 5rem 0;
}

.audit-who__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 768px) {
  .audit-who__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.audit-who__copy h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin: 0.6rem 0 1.25rem;
}

.audit-who__copy p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.audit-who__checklist h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e9b328;
  margin-bottom: 1.25rem;
}

.audit-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.audit-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.93rem;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.5;
}

.audit-checklist li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================================
   DELIVERABLES (light bg)
============================================================ */
.audit-deliverables-section {
  background: #f4f6f9;
  padding: 5rem 0;
}

.audit-deliverables {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (max-width: 768px) {
  .audit-deliverables {
    grid-template-columns: 1fr;
  }
}

.audit-deliverable {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-top: 3px solid #e9b328;
  border-radius: 6px;
  padding: 2rem 1.75rem;
}

.audit-deliverable__icon {
  width: 52px;
  height: 52px;
  background: rgba(0, 61, 122, 0.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.audit-deliverable h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #003d7a;
  margin-bottom: 0.6rem;
}

.audit-deliverable p {
  font-size: 0.9rem;
  color: #4a5568;
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   TRUST BLOCK (dark bg)
============================================================ */
.audit-trust-section {
  background: #003d7a;
  padding: 5rem 0;
}

.audit-trust__inner {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 768px) {
  .audit-trust__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.audit-trust__mark {
  margin-bottom: 1.25rem;
  display: block;
}

.audit-trust__quote blockquote {
  margin: 0 0 1.25rem;
}

.audit-trust__quote blockquote p {
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
}

.audit-trust__quote cite {
  font-size: 0.82rem;
  font-weight: 600;
  color: #e9b328;
  font-style: normal;
  letter-spacing: 0.03em;
}

.audit-trust__stats {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.audit-trust__stat {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding-left: 1.25rem;
  border-left: 3px solid #e9b328;
}

.audit-trust__stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.75rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
}

.audit-trust__stat-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

/* ============================================================
   FORM SECTION (white bg)
============================================================ */
.audit-form-section {
  background: #ffffff;
  padding: 5rem 0 6rem;
}

.audit-form__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

@media (max-width: 900px) {
  .audit-form__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.audit-form__copy h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #003d7a;
  line-height: 1.2;
  margin: 0.6rem 0 1.25rem;
}

.audit-form__copy p {
  font-size: 0.95rem;
  color: #4a5568;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.audit-form__reassurances {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.audit-form__reassurances li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: #4a5568;
}

/* Form itself */
.audit-form {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.audit-form__row {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.audit-form__row--two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

@media (max-width: 540px) {
  .audit-form__row--two {
    grid-template-columns: 1fr;
  }
}

.audit-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.audit-form__field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #2d3748;
  letter-spacing: 0.01em;
}

.audit-form__field label span {
  color: #e9b328;
}

.audit-form__field input,
.audit-form__field select,
.audit-form__field textarea {
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: #1a202c;
  background: #ffffff;
  border: 1.5px solid #cbd5e0;
  border-radius: 5px;
  padding: 0.65rem 0.85rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}

.audit-form__field input::placeholder,
.audit-form__field textarea::placeholder {
  color: #a0aec0;
}

.audit-form__field input:focus,
.audit-form__field select:focus,
.audit-form__field textarea:focus {
  border-color: #003d7a;
  box-shadow: 0 0 0 3px rgba(0, 61, 122, 0.1);
}

.audit-form__field textarea {
  resize: vertical;
  min-height: 110px;
}

.audit-form__field select {
  appearance: none;
  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='%23718096' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.audit-form__submit {
  font-size: 1rem;
  padding: 0.9rem 1.5rem;
  margin-top: 0.25rem;
}

.audit-form__note {
  font-size: 0.78rem;
  color: #718096;
  text-align: center;
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   SOCIAL PROOF — From the Field
============================================================ */
.audit-social-proof-section {
  background: #ffffff;
  padding: 5rem 0;
}

.audit-proof-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 1.75rem;
}

@media (max-width: 768px) {
  .audit-proof-cards {
    grid-template-columns: 1fr;
  }
}

.audit-proof-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-left: 4px solid #e9b328;
  border-radius: 6px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.audit-proof-card__tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #003d7a;
}

.audit-proof-card__finding {
  font-size: 0.93rem;
  color: #2d3748;
  line-height: 1.75;
  margin: 0;
  flex: 1;
}

.audit-proof-card__meta {
  display: flex;
  gap: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid #e2e8f0;
}

.audit-proof-card__role {
  font-size: 0.78rem;
  font-weight: 600;
  color: #64748b;
}

.audit-proof-card__size {
  font-size: 0.78rem;
  color: #64748b;
}

.audit-proof-note {
  font-size: 0.8rem;
  color: #718096;
  line-height: 1.6;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.audit-deliverable__num {
  width: 48px;
  height: 48px;
  background: #003d7a;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  flex-shrink: 0;
}

/* ============================================================
   OBJECTION STRIP (after hero)
============================================================ */
.audit-objection-strip {
  background: #ffffff;
  border-bottom: 1px solid #e8edf3;
}

.audit-objection-strip__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
  padding: 2.5rem 0;
}

@media (max-width: 768px) {
  .audit-objection-strip__inner {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

.audit-objection-divider {
  width: 1px;
  background: #e2e8f0;
  align-self: stretch;
  margin: 0 2rem;
}

@media (max-width: 768px) {
  .audit-objection-divider {
    display: none;
  }
}

.audit-objection-item__q {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: #003d7a;
  margin: 0 0 0.6rem;
  font-style: italic;
}

.audit-objection-item__a {
  font-size: 0.88rem;
  color: #4a5568;
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   FOUNDER PLEDGE (above form)
============================================================ */
.audit-pledge-section {
  background: #f4f6f9;
  padding: 3.5rem 0;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.audit-pledge {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  max-width: 780px;
  margin: 0 auto;
  border-left: 3px solid #e9b328;
  padding-left: 2rem;
}

@media (max-width: 600px) {
  .audit-pledge {
    flex-direction: column;
    gap: 1rem;
  }
}

.audit-pledge__mark {
  flex-shrink: 0;
  padding-top: 0.15rem;
}

.audit-pledge__heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #003d7a;
  margin: 0 0 1rem;
}

.audit-pledge__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.audit-pledge__list li {
  font-size: 0.92rem;
  color: #2d3748;
  line-height: 1.7;
  padding-left: 1.1rem;
  position: relative;
}

.audit-pledge__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e9b328;
}

.audit-pledge__sig {
  font-size: 0.82rem;
  font-weight: 600;
  color: #64748b;
  font-style: italic;
  padding-top: 1rem;
  border-top: 1px solid #e2e8f0;
  margin: 0;
}

/* ============================================================
   TWO-STEP FORM
============================================================ */
.audit-form__step-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #003d7a;
  margin-bottom: 1.25rem;
  display: block;
}

.audit-form__field-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #2d3748;
  display: block;
  margin-bottom: 0.75rem;
}

.af-option-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.af-option {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: #2d3748;
  background: #ffffff;
  border: 1.5px solid #cbd5e0;
  border-radius: 5px;
  padding: 0.55rem 1rem;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.af-option:hover {
  border-color: #003d7a;
  color: #003d7a;
}

.af-option--selected {
  background: #003d7a;
  border-color: #003d7a;
  color: #ffffff;
}

.af-back-btn {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: #64748b;
  background: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  padding: 0.9rem 0;
  flex-shrink: 0;
  transition: color 0.15s ease;
}

.af-back-btn:hover {
  color: #003d7a;
}

/* ============================================================
   TESTIMONIAL PLACEHOLDER
============================================================ */
.audit-testimonial-section {
  background: #ffffff;
  padding: 4rem 0;
  border-top: 1px solid #e2e8f0;
}

.audit-testimonial-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-left: 4px solid #e9b328;
  border-radius: 6px;
  padding: 2rem 2rem 1.75rem;
  max-width: 780px;
  margin-top: 1.25rem;
}

.audit-testimonial-card--placeholder {
  border-style: dashed;
  border-left-style: solid;
  opacity: 0.7;
}

.audit-testimonial-card__quote-mark {
  margin-bottom: 1rem;
}

.audit-testimonial-card__body p {
  font-size: 1rem;
  font-style: italic;
  color: #4a5568;
  line-height: 1.8;
  margin: 0 0 1.25rem;
}

.audit-testimonial-card__cite {
  font-size: 0.82rem;
  font-weight: 600;
  color: #64748b;
  font-style: normal;
  display: block;
  padding-top: 1rem;
  border-top: 1px solid #e2e8f0;
}

/* ============================================================
   COMMITMENT BLOCK (replaces trust + pledge + testimonial)
============================================================ */
.audit-commit-section {
  background: #003d7a;
  padding: 5rem 0;
}

.audit-commit-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 3rem;
}

.audit-commit-stat {
  background: #003d7a;
  padding: 1.75rem 1.5rem;
  text-align: center;
}

.audit-commit-stat__num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: #e9b328;
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.audit-commit-stat__label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

.audit-commit-divider {
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin-bottom: 3rem;
}

.audit-commit-body {
  display: block;
  width: 100%;
}



.audit-commit-pledge__heading {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin: 0.6rem 0 1.25rem;
}

.audit-commit-pledge__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.audit-commit-pledge__list li {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  padding-left: 1.1rem;
  position: relative;
}

.audit-commit-pledge__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e9b328;
}

.audit-commit-pledge__sig {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  font-style: italic;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  margin: 0;
}

.audit-commit-quote {
  border-left: 2px solid rgba(233,179,40,0.35);
  padding-left: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.audit-commit-quote__text {
  margin: 0;
}

.audit-commit-quote__text p {
  font-size: 1rem;
  font-style: italic;
  color: rgba(255,255,255,0.82);
  line-height: 1.8;
  margin: 0;
}

.audit-commit-quote__cite {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  font-style: normal;
  display: block;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.audit-commit-quote__cta {
  display: inline-flex;
  align-items: center;
  margin-top: 0.5rem;
}

/* ============================================================
   COMMITMENT BLOCK — UPDATED LAYOUT
============================================================ */
.audit-commit-pledge--full {
  width: 100%;
  text-align: center;
}

.audit-commit-pledge--full .audit-commit-pledge__heading {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  color: #ffffff;
  font-style: italic;
  font-weight: 800;
  margin: 0.75rem 0 1rem;
  line-height: 1.35;
}

.audit-commit-pledge--full .audit-commit-pledge__sig {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  font-style: italic;
  border: none;
  padding: 0;
  margin: 0 0 2.5rem;
}

.audit-commit-pledge__facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.12);
  margin-top: 2rem;
  width: 100%;
}

@media (max-width: 768px) {
  .audit-commit-pledge__facts {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .audit-commit-pledge__facts {
    grid-template-columns: 1fr;
  }
}

.audit-commit-fact {
  background: #003d7a;
  padding: 1.25rem 1.5rem;
  font-size: 0.92rem;
  color: #ffffff;
  line-height: 1.6;
  text-align: left;
}

.audit-commit-fact::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e9b328;
  margin-right: 0.6rem;
  vertical-align: middle;
  flex-shrink: 0;
}

/* Fix stat label readability */
.audit-commit-stat__label {
  color: rgba(255,255,255,0.85) !important;
}

/* ============================================================
   COMMITMENT BLOCK — BULLET LIST LAYOUT (final)
============================================================ */
.audit-commit-pledge--full {
  width: 100%;
  text-align: left;
  max-width: 780px;
}

.audit-commit-pledge__list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.audit-commit-pledge__list li {
  font-size: 0.95rem;
  color: #ffffff;
  line-height: 1.7;
  padding-left: 1.25rem;
  position: relative;
}

.audit-commit-pledge__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e9b328;
  flex-shrink: 0;
}

.audit-commit-pledge__sig {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  font-style: italic;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  margin: 0;
  border: none;
}

/* ============================================================
   COMMITMENT BLOCK — FOUNDER QUOTE REDESIGN
============================================================ */
.audit-commit-founder {
  margin-bottom: 2.5rem;
}

.audit-commit-founder__quotemark {
  margin-bottom: 1.25rem;
}

.audit-commit-founder__quote {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-weight: 700;
  font-style: italic;
  color: #ffffff;
  line-height: 1.6;
  margin: 0 0 1.75rem;
  max-width: 820px;
}

.audit-commit-founder__attr {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.audit-commit-founder__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #e9b328;
  color: #003d7a;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.audit-commit-founder__name {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.15rem;
}

.audit-commit-founder__title {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

.audit-commit-pledge__eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #e9b328;
  margin: 0 0 1rem;
}

/* ============================================================
   COMMITMENT BLOCK — FINAL CLEAN VERSION
============================================================ */
.audit-commit-pledge--full {
  width: 100%;
  text-align: left;
  max-width: 100%;
}

.audit-commit-pledge__eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #e9b328;
  margin: 1rem 0 1.25rem;
}

.audit-commit-pledge__list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.audit-commit-pledge__list li {
  font-size: 1.05rem;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.65;
  padding-left: 1.4rem;
  position: relative;
}

.audit-commit-pledge__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e9b328;
}

.audit-commit-pledge__sig {
  font-size: 0.92rem;
  font-style: italic;
  color: rgba(255,255,255,0.65);
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  margin: 0;
}

/* ============================================================
   COMMITMENT BLOCK — QUOTE LEFT, CONTENT RIGHT LAYOUT
============================================================ */
.audit-commit-layout {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
}

.audit-commit-layout__mark {
  flex-shrink: 0;
  padding-top: 0.25rem;
}

.audit-commit-layout__content {
  flex: 1;
}

.audit-commit-signoff {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.audit-commit-signoff__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #e9b328;
  color: #003d7a;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.audit-commit-signoff__name {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.15rem;
}

.audit-commit-signoff__title {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

@media (max-width: 600px) {
  .audit-commit-layout {
    flex-direction: column;
    gap: 1.25rem;
  }
}

/* ============================================================
   STAMP — mobile vs desktop visibility
============================================================ */
.audit-hero__badge--mobile {
  display: none;
  justify-content: center;
  margin: 1.75rem 0;
}

@media (max-width: 768px) {
  .audit-hero__badge--mobile {
    display: flex;
  }
  .audit-hero__badge {
    display: none;
  }
}
