/* ============================================= */
/* AUDIT PAGE — SPECIFIC STYLES                  */
/* Uses colors & patterns from styles.css        */
/* ============================================= */

/* ---- GLOBAL RESETS FOR AUDIT PAGE ---- */
.audit-hero h1,
.audit-proof__container h2,
.audit-inside__container h2,
.audit-about__container h2,
.audit-qualifier__container h2,
.audit-terms__container h2,
.audit-faq__container h2,
.audit-cta__container h2 {
  margin-top: 0;
}

/* Fix: global p { max-width: 600px } in styles.css creates
   600px-wide blocks that sit LEFT-aligned. We need margin:auto
   to center those blocks within their centered containers. */
.audit-hero__note,
.audit-proof__subline,
.audit-proof__cite,
.audit-about__subline,
.audit-qualifier__subline,
.audit-terms__subline,
.audit-faq__subline,
.audit-cta__subline,
.audit-cta__card-trust {
  margin-left: auto;
  margin-right: auto;
}

/* ---- MID-PAGE CTA ---- */
.audit-mid-cta {
  text-align: center;
  margin-top: 3rem;
}

.audit-mid-cta__note {
  display: block;
  font-size: 0.8rem;
  color: #9e9ea3;
  margin-top: 0.75rem;
}

/* ---- HERO ---- */
.audit-hero {
  position: relative;
  padding: clamp(7rem, 14vw, 10rem) 0 clamp(4rem, 8vw, 6rem);
  overflow: hidden;
}

.audit-hero__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
  text-align: center;
}

/* ---- Badge with shimmer animation ---- */
.audit-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(26, 111, 224, 0.08);
  color: #1a6fe0;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(26, 111, 224, 0.15);
  position: relative;
  overflow: hidden;
  animation: badgePulse 3s ease-in-out infinite;
}

.audit-hero__badge::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(26, 111, 224, 0.15), transparent);
  animation: badgeShimmer 3s ease-in-out infinite;
}

@keyframes badgeShimmer {
  0%, 100% { left: -100%; }
  50%, 60% { left: 100%; }
}

@keyframes badgePulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(26, 111, 224, 0.15);
  }
  50% {
    box-shadow: 0 0 20px 4px rgba(26, 111, 224, 0.12);
  }
}

.audit-hero__headline {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: #1a1a1e;
  margin-bottom: 1.25rem;
}

.audit-hero__subline {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: #6b6b70;
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.6;
  text-align: center;
}

.audit-hero__checklist {
  list-style: none;
  padding: 0;
  margin: 0 auto 2.5rem;
  max-width: 640px;
  text-align: left;
}

.audit-hero__checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: #3a3a3c;
  margin-bottom: 0.85rem;
  line-height: 1.5;
}

.audit-hero__checklist li i {
  color: #1a6fe0;
  font-size: 1.1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.audit-hero__ctas {
  margin-bottom: 1rem;
}

.audit-hero__note {
  font-size: 0.875rem;
  color: #9e9ea3;
  margin-top: 0.5rem;
  text-align: center;
}

/* ---- PROOF SECTION ---- */
.audit-proof {
  padding: clamp(5rem, 12vw, 8rem) 0;
  background: #ebe8e2;
  position: relative;
}

.audit-proof::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(ellipse, rgba(26, 111, 224, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.audit-proof__container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
  text-align: center;
}

.audit-proof__container h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #1a1a1e;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.audit-proof__subline {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  color: #1a6fe0;
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: center;
}

.audit-proof__desc {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: #6b6b70;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 3rem;
  text-align: center;
}

.audit-proof__section-title {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: #1a1a1e;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.8rem;
}

.audit-proof__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.audit-proof__metric {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  transition: all 0.3s ease;
}

.audit-proof__metric:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(26, 111, 224, 0.2);
}

.audit-proof__metric-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #9e9ea3;
  margin-bottom: 1rem;
}

.audit-proof__metric-change {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.audit-proof__metric-change i {
  color: #1a6fe0;
  font-size: 0.875rem;
}

.audit-proof__metric-before {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 800;
  color: #cf222e;
}

.audit-proof__metric-after {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 800;
  color: #2da44e;
}

.audit-proof__metric-delta {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.audit-proof__metric-delta--up {
  background: rgba(45, 164, 78, 0.1);
  color: #2da44e;
}

.audit-proof__metric-delta--down {
  background: rgba(45, 164, 78, 0.1);
  color: #2da44e;
}

/* Month-by-month table */
.audit-proof__table-wrap {
  margin-bottom: 3rem;
}

.audit-proof__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 16px;
  overflow: hidden;
  font-size: 0.925rem;
}

.audit-proof__table th {
  background: #f5f3ef;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #9e9ea3;
  padding: 1rem 1.25rem;
  text-align: left;
}

.audit-proof__table td {
  padding: 0.9rem 1.25rem;
  color: #3a3a3c;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.audit-proof__table tfoot td {
  background: #f5f3ef;
  border-top: 2px solid rgba(26, 111, 224, 0.15);
  color: #1a1a1e;
}

.audit-proof__table-roas {
  font-weight: 700;
  color: #1a6fe0 !important;
}

.audit-proof__table-highlight td {
  background: rgba(26, 111, 224, 0.03);
}

/* What We Changed grid */
.audit-proof__changes {
  margin-bottom: 3rem;
}

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

.audit-proof__change-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  transition: all 0.3s ease;
}

.audit-proof__change-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
  border-color: rgba(26, 111, 224, 0.15);
}

.audit-proof__change-item i {
  color: #1a6fe0;
  font-size: 1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.audit-proof__change-item strong {
  display: block;
  font-size: 0.925rem;
  font-weight: 700;
  color: #1a1a1e;
  margin-bottom: 0.2rem;
}

.audit-proof__change-item span {
  font-size: 0.8rem;
  color: #9e9ea3;
  line-height: 1.4;
}

.audit-proof__cite {
  font-size: 0.8rem;
  color: #9e9ea3;
  font-style: italic;
  text-align: center;
}

/* ---- WHAT'S INSIDE ---- */
.audit-inside {
  padding: clamp(5rem, 12vw, 8rem) 0;
  position: relative;
}

.audit-inside::before {
  content: '';
  position: absolute;
  top: 100px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(26, 111, 224, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.audit-inside__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
  text-align: center;
}

.audit-inside__container h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #1a1a1e;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.audit-inside__subline {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #6b6b70;
  max-width: 650px;
  margin: 0 auto 3rem;
  line-height: 1.6;
  text-align: center;
}

.audit-inside__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: left;
}

.audit-inside__card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.audit-inside__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, #1a6fe0, #4d94f0);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.audit-inside__card:hover::before {
  opacity: 1;
}

.audit-inside__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.audit-inside__card-inner {
  padding: 2rem;
}

.audit-inside__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1a6fe0, #4d94f0);
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
}

.audit-inside__card h3 {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #1a1a1e;
  margin-bottom: 0.75rem;
}

.audit-inside__card p {
  font-size: 0.925rem;
  color: #6b6b70;
  line-height: 1.6;
}

/* ---- WHO'S BEHIND THIS ---- */
.audit-about {
  padding: clamp(5rem, 12vw, 8rem) 0;
  background: #ebe8e2;
  position: relative;
}

.audit-about::before {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse, rgba(26, 111, 224, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.audit-about__container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
  text-align: center;
}

.audit-about__container h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #1a1a1e;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.audit-about__subline {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  color: #1a6fe0;
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: center;
}

.audit-about__desc {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: #6b6b70;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 3rem;
  text-align: center;
}

.audit-about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.audit-about__stat {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  transition: all 0.3s ease;
}

.audit-about__stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(26, 111, 224, 0.2);
}

.audit-about__stat-value {
  display: block;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 900;
  background: linear-gradient(135deg, #1a6fe0, #4d94f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.audit-about__stat-label {
  display: block;
  font-size: 0.85rem;
  color: #6b6b70;
  line-height: 1.4;
}

/* ---- QUALIFIER ---- */
.audit-qualifier {
  padding: clamp(5rem, 12vw, 8rem) 0;
  position: relative;
}

.audit-qualifier__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
  text-align: center;
}

.audit-qualifier__container h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #1a1a1e;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.audit-qualifier__subline {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #6b6b70;
  margin-bottom: 3rem;
  text-align: center;
}

.audit-qualifier__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  text-align: left;
}

.audit-qualifier__card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 20px;
  padding: 2.5rem 2rem;
}

.audit-qualifier__card h3 {
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.audit-qualifier__card--yes h3 {
  color: #2da44e;
}

.audit-qualifier__card--yes h3 i {
  color: #2da44e;
}

.audit-qualifier__card--no h3 {
  color: #cf222e;
}

.audit-qualifier__card--no h3 i {
  color: #cf222e;
}

.audit-qualifier__card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.audit-qualifier__card ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: #3a3a3c;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.audit-qualifier__card ul li:last-child {
  margin-bottom: 0;
}

.audit-qualifier__card--yes ul li i {
  color: #2da44e;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.audit-qualifier__card--no ul li i {
  color: #cf222e;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.audit-qualifier__card--yes {
  border-top: 3px solid #2da44e;
}

.audit-qualifier__card--no {
  border-top: 3px solid #cf222e;
}

/* ---- KEY TERMS ---- */
.audit-terms {
  padding: clamp(5rem, 12vw, 8rem) 0;
  background: #ebe8e2;
}

.audit-terms__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
  text-align: center;
}

.audit-terms__container h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #1a1a1e;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.audit-terms__subline {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #6b6b70;
  margin-bottom: 3rem;
  text-align: center;
}

.audit-terms__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  text-align: left;
}

.audit-terms__item:nth-child(1) { grid-column: 1 / 3; }
.audit-terms__item:nth-child(2) { grid-column: 3 / 5; }
.audit-terms__item:nth-child(3) { grid-column: 5 / 7; }
.audit-terms__item:nth-child(4) { grid-column: 2 / 4; }
.audit-terms__item:nth-child(5) { grid-column: 4 / 6; }

.audit-terms__item {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 20px;
  padding: 1.75rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.audit-terms__item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, #1a6fe0, #4d94f0);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.audit-terms__item:hover::before {
  transform: scaleX(1);
}

.audit-terms__item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(26, 111, 224, 0.1);
  border-color: rgba(26, 111, 224, 0.15);
}

.audit-terms__item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a6fe0;
  margin-bottom: 0.5rem;
}

.audit-terms__item p {
  font-size: 0.875rem;
  color: #6b6b70;
  line-height: 1.6;
}

/* 6-col grid handles centering of bottom row automatically via nth-child rules above */

/* ---- FAQ ---- */
.audit-faq {
  padding: clamp(5rem, 12vw, 8rem) 0;
  position: relative;
}

.audit-faq__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
  text-align: center;
}

.audit-faq__container h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #1a1a1e;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.audit-faq__subline {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #6b6b70;
  margin-bottom: 3rem;
  text-align: center;
}

.audit-faq__list {
  text-align: left;
}

.audit-faq__item {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 16px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.audit-faq__item:hover {
  border-color: rgba(26, 111, 224, 0.2);
}

.audit-faq__item--open {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.audit-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  font-weight: 600;
  color: #1a1a1e;
  text-align: left;
  gap: 1rem;
  transition: color 0.3s ease;
}

.audit-faq__question:hover {
  color: #1a6fe0;
}

.audit-faq__question i {
  font-size: 0.875rem;
  color: #1a6fe0;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.audit-faq__item--open .audit-faq__question i {
  transform: rotate(45deg);
}

.audit-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.audit-faq__item--open .audit-faq__answer {
  max-height: 500px;
}

.audit-faq__answer p {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.925rem;
  color: #6b6b70;
  line-height: 1.7;
}

/* ---- FINAL CTA ---- */
.audit-cta {
  padding: clamp(5rem, 12vw, 8rem) 0;
  background: #ebe8e2;
  position: relative;
}

.audit-cta::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(ellipse, rgba(26, 111, 224, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.audit-cta__container {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
  text-align: center;
}

.audit-cta__container h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #1a1a1e;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.audit-cta__subline {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #6b6b70;
  margin-bottom: 2.5rem;
  text-align: center;
}

.audit-cta__card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
}

.audit-cta__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #1a6fe0, #4d94f0);
}

.audit-cta__card-header {
  margin-bottom: 2rem;
}

.audit-cta__card-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9e9ea3;
  margin-bottom: 0.5rem;
}

.audit-cta__card-price {
  display: block;
  font-size: clamp(3rem, 6vw, 4rem);
  font-weight: 900;
  background: linear-gradient(135deg, #1a6fe0, #4d94f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.audit-cta__card-note {
  display: block;
  font-size: 0.875rem;
  color: #9e9ea3;
}

.audit-cta__card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  text-align: left;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.audit-cta__card-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: #3a3a3c;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.audit-cta__card-features li i {
  color: #1a6fe0;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.audit-cta__btn {
  width: 100%;
  max-width: 380px;
  justify-content: center;
  font-size: 1.05rem;
}

.audit-cta__card-trust {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: #9e9ea3;
}

.audit-cta__card-trust i {
  margin-right: 0.25rem;
}

/* ---- NAV ACTIVE LINK ---- */
.nav__link--active {
  color: #1a6fe0 !important;
  font-weight: 600;
}

/* ============================================= */
/* RESPONSIVE                                    */
/* ============================================= */

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

  .audit-terms__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .audit-terms__item:nth-child(1),
  .audit-terms__item:nth-child(2),
  .audit-terms__item:nth-child(3),
  .audit-terms__item:nth-child(4) {
    grid-column: auto;
  }

  .audit-terms__item:nth-child(5) {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .audit-hero {
    padding-top: clamp(6rem, 12vw, 8rem);
  }

  .audit-proof__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .audit-proof__changes-grid {
    grid-template-columns: 1fr;
  }

  .audit-proof__table th,
  .audit-proof__table td {
    padding: 0.7rem 0.9rem;
    font-size: 0.85rem;
  }

  .audit-inside__grid {
    grid-template-columns: 1fr;
  }

  .audit-about__stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .audit-qualifier__grid {
    grid-template-columns: 1fr;
  }

  .audit-terms__grid {
    grid-template-columns: 1fr;
  }

  .audit-terms__item:nth-child(1),
  .audit-terms__item:nth-child(2),
  .audit-terms__item:nth-child(3),
  .audit-terms__item:nth-child(4),
  .audit-terms__item:nth-child(5) {
    grid-column: auto;
    max-width: 100%;
  }

  .audit-cta__card {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .audit-hero__headline {
    font-size: clamp(2rem, 8vw, 2.75rem);
  }

  .audit-proof__metric-change {
    gap: 0.5rem;
  }

  .audit-proof__metric-before,
  .audit-proof__metric-after {
    font-size: 1.15rem;
  }
}
