:root {
  --bg: #0d0d0d;
  --bg-elevated: #161616;
  --bg-card: #1a1a1a;
  --text: #ffffff;
  --text-muted: #a3a3a3;
  --text-subtle: #737373;
  --accent: #2563eb;
  --accent-hover: #1d4ed8;
  --accent-light: #3b82f6;
  --border: #2a2a2a;
  --success: #22c55e;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  --max-width: 1140px;
  --warning-red: #f87171;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent-light);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #60a5fa;
}

img {
  max-width: 100%;
  height: auto;
}

.audit-hero {
  padding: 5.5rem 1.5rem 4.5rem;
  text-align: center;
  background: linear-gradient(180deg, #111111 0%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
}

.audit-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.audit-hero-inner {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
}

.audit-hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.audit-hero h1 .highlight {
  color: var(--accent-light);
}

.audot-hero .subhead {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 2.25rem;
  line-height: 1.55;
}

.audit-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: white;
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
}

.btn-secondary {
  background: transparent;
  background: var(--whiteSmoke);
  color: var(--modernBlack);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--text-muted);
  background: var(--bg-elevated);
  color: var(--text);
}

.btn-lg {
  padding: 1.05rem 2rem;
  font-size: 1.05rem;
}

section {
  padding: 2rem;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
  text-align: center;
  color: var(--text);
}

.section-sub {
  text-align: center;
  color: var(--text-muted);
  max-width: 1000px;
  margin: 0 auto;
  font-size: var(--font-sm);
}

.pain {
  background: var(--bg-elevated);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.pain-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.pain-item h3 {
  font-size: var(--font-md);
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--warning-red);
}

.pain-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.solution-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.solution-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

.solution-card h3 {
  font-size: var(--font-md);
  font-weight: 700;
  margin-bottom: .5rem;
  color: var(--bright-victory-green);
}

.solution-card p {
  color: var(--text-muted);
  font-size: 0.975rem;
}

.pricing {
  background: linear-gradient(180deg, var(--bg) 0%, #111 100%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.75rem;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0;
}

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}

.price-card:hover {
  border-color: #3b3b3b;
  transform: translateY(-3px);
}

.price-card.popular {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), var(--shadow);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
}

.price-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.price-card .price {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0.75rem 0 0.25rem;
}

.price-card .price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
}

.price-card .desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.price-card ul {
  list-style: none;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.price-card li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.7rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

.price-card .btn {
  width: 100%;
}

.enterprise-note {
  text-align: center;
  margin-top: 2.5rem;
  color: var(--text-muted);
  font-size: 1rem;
}

/* ========== PROCESS ========== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
  counter-reset: step;
}

.step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: relative;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--accent);
  color: white;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.step p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ========== PROOF ========== */
.proof {
  background: var(--bg-elevated);
}

.testimonial {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
}

.testimonial blockquote {
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.45;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.testimonial cite {
  color: var(--text-muted);
  font-style: normal;
  font-size: 0.95rem;
}

.proof-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 3rem;
  text-align: center;
}

.stat strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-light);
  margin-bottom: 0.25rem;
}

.stat span {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ========== FAQ ========== */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-item h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.faq-item p {
  color: var(--text-muted);
  font-size: 0.975rem;
}

/* ========== FINAL CTA ========== */

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: .75rem;
  padding: 2rem 0 0 0;
}

.final-cta {
  text-align: center;
  padding: 5rem 1.5rem;
  /*background: linear-gradient(180deg, #111 0%, #0a0a0a 100%);*/
  background: var(--bg-elevated);
}

.final-cta h2 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.final-cta p {
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto 2rem;
  font-size: var(--font-sm);
}

.final-cta .brand-line {
  margin-top: 2.5rem;
  color: var(--text-subtle);
  font-size: 0.95rem;
  font-weight: 500;
}

.faq-item {
  /* border: 1px solid #e5e5e5; */
  margin-bottom: .5rem;
  padding: .5rem;
  background: rgb(var(--white-rgb), .20);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  gap: .75rem;
}

.faq-question button {
  border: none;
  outline: none;
  background: none;
  cursor: pointer;
  color: var(--white);
  font-size: 2rem;
  padding-right: 1rem;
}

.faq-answer {
  padding: .5rem;
  animation: animate .7s;
}

.hide-text {
  display: none;
  opacity: 0;
}

ul {
  padding: .5rem 1.5rem;
}

li {
  color: var(--text-muted);
  padding: .5rem 0;
}

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

  .menu-toggle {
    display: block;
  }

  .hero {
    padding: 4rem 1.25rem 3.5rem;
  }

  section {
    padding: 3.5rem 1.25rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .price-card.popular {
    order: -1;
  }

  .hero-ctas {
    flex-direction: column;
  }
}