/* === AUDIT LANDING PAGE === */

/* HERO */
.audit-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 32px 80px;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.audit-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(57,255,20,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57,255,20,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 40%, transparent 100%);
  pointer-events: none;
}
.audit-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
  text-align: center;
}
.audit-hero-img {
  width: 100%;
  max-width: 900px;
  border-radius: 16px;
  border: 1px solid rgba(57,255,20,0.15);
  margin: 0 auto 56px;
  display: block;
  box-shadow: 0 0 0 1px rgba(57,255,20,0.05), 0 40px 80px rgba(0,0,0,0.7);
}
.audit-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-body);
  background: var(--accent-dim);
  border: 1px solid rgba(57,255,20,0.2);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 28px;
}
.audit-hero-h1 {
  font-family: var(--font-head);
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.audit-hero-h1 .accent { color: var(--accent); }
.audit-hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.6;
}
.audit-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.btn-primary {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  background: var(--accent);
  color: #0a0a0c;
  border: none;
  border-radius: 10px;
  padding: 14px 32px;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  text-decoration: none;
  display: inline-block;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(57,255,20,0.35);
}
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--fg-muted);
  text-decoration: none;
  padding: 14px 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.15s;
}
.btn-ghost:hover { color: var(--fg); }
.trust-line {
  margin-top: 20px;
  font-size: 14px;
  color: var(--fg-muted);
}

/* SECTION BASE */
.section { padding: 100px 32px; }
.section-alt { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-eyebrow {
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
  font-family: var(--font-body);
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 600px;
  line-height: 1.65;
}
.section-header { margin-bottom: 56px; }
.section-header-center { text-align: center; }
.section-header-center .section-sub { margin: 0 auto; }

/* FORM SECTION */
.form-section { padding: 80px 32px; }
.form-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  max-width: 560px;
  margin: 0 auto;
}
.form-title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}
.form-sub { font-size: 15px; color: var(--fg-muted); margin-bottom: 28px; }
.form-group { margin-bottom: 16px; }
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-muted);
  margin-bottom: 6px;
}
.form-input, .form-select {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--fg);
  font-size: 15px;
  font-family: var(--font-body);
  transition: border-color 0.15s;
  outline: none;
  -webkit-appearance: none;
}
.form-input::placeholder { color: #555; }
.form-input:focus, .form-select:focus { border-color: rgba(57,255,20,0.4); }
.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 7L11 1' stroke='%23888' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.btn-submit {
  width: 100%;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  background: var(--accent);
  color: #0a0a0c;
  border: none;
  border-radius: 10px;
  padding: 14px;
  cursor: pointer;
  margin-top: 8px;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(57,255,20,0.35);
}
.form-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--fg-muted);
  text-align: center;
}
.form-success {
  text-align: center;
  padding: 40px 20px;
}
.form-success-icon {
  width: 64px;
  height: 64px;
  background: var(--accent-dim);
  border: 1px solid rgba(57,255,20,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.form-success h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}
.form-success p { font-size: 15px; color: var(--fg-muted); line-height: 1.6; }

/* CHECKS GRID */
.checks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.check-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  transition: border-color 0.2s;
}
.check-card:hover { border-color: rgba(57,255,20,0.2); }
.check-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-dim);
  border: 1px solid rgba(57,255,20,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.check-card h3 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}
.check-card p { font-size: 13px; color: var(--fg-muted); line-height: 1.5; }

/* HOW IT WORKS */
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 0;
}
.how-step {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  position: relative;
}
.how-step-num {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(57,255,20,0.15);
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 20px;
}
.how-step h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}
.how-step p { font-size: 15px; color: var(--fg-muted); line-height: 1.6; }
.how-step-icon {
  margin-top: 24px;
  color: var(--fg-muted);
}

/* PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 0;
}
.pricing-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-color 0.2s;
}
.pricing-card.featured {
  border-color: rgba(57,255,20,0.3);
  background: linear-gradient(180deg, rgba(57,255,20,0.04) 0%, var(--bg-2) 60%);
  box-shadow: 0 0 0 1px rgba(57,255,20,0.08);
}
.pricing-card.featured .pricing-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(57,255,20,0.2);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.pricing-name {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}
.pricing-tagline { font-size: 14px; color: var(--fg-muted); margin-bottom: 24px; }
.pricing-price {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.pricing-price span { font-size: 18px; font-weight: 500; color: var(--fg-muted); }
.pricing-divider { height: 1px; background: var(--border); margin: 20px 0; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.pricing-features li {
  font-size: 14px;
  color: var(--fg-muted);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 12px;
  top: 1px;
}
.pricing-cta {
  margin-top: 28px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  background: var(--bg-3);
  color: var(--fg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  display: block;
  transition: border-color 0.15s, background 0.15s;
}
.pricing-card.featured .pricing-cta {
  background: var(--accent);
  color: #0a0a0c;
  border-color: var(--accent);
}
.pricing-cta:hover {
  border-color: rgba(57,255,20,0.4);
  background: var(--bg-3);
}
.pricing-card.featured .pricing-cta:hover {
  background: #32e612;
  border-color: #32e612;
}
.pricing-guarantee {
  font-size: 12px;
  color: var(--fg-muted);
  text-align: center;
  margin-top: 12px;
}

/* FAQ */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--fg);
}
.faq-a { font-size: 15px; color: var(--fg-muted); line-height: 1.65; }

/* CONTACT */
.contact-section { padding: 80px 32px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 960px;
  margin: 0 auto;
  align-items: start;
}
.contact-info h3 {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.contact-info p { font-size: 16px; color: var(--fg-muted); line-height: 1.6; margin-bottom: 28px; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--fg-muted);
  margin-bottom: 12px;
}
.contact-detail-icon {
  width: 32px;
  height: 32px;
  background: var(--accent-dim);
  border: 1px solid rgba(57,255,20,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-form {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}
.contact-form .form-group:last-of-type { margin-bottom: 0; }
.contact-form textarea.form-input {
  resize: vertical;
  min-height: 120px;
  font-family: var(--font-body);
}
.contact-note { font-size: 13px; color: var(--fg-muted); text-align: center; margin-top: 16px; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .checks-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .audit-hero { padding: 100px 20px 60px; }
  .section { padding: 64px 20px; }
  .form-section { padding: 64px 20px; }
  .contact-section { padding: 64px 20px; }
  .checks-grid { grid-template-columns: 1fr; }
  .form-card { padding: 28px 20px; }
  .pricing-card { padding: 28px 20px; }
  .contact-grid { gap: 40px; }
}