.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 12px 24px;
  border-radius: var(--radius-btn);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: none;
}

.btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: var(--shadow-accent);
}

.btn-outline {
  background: transparent;
  color: var(--ink-950);
  border-color: var(--ink-950);
}

.btn-outline:hover {
  background: var(--ink-950);
  color: #fff;
}

.btn-white {
  background: #fff;
  color: var(--ink-950);
}

.btn-white:hover { box-shadow: var(--shadow-md); }

.btn-lg { padding: 16px 32px; font-size: 1rem; }

.card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--transition), transform var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.proof-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 40px;
  justify-content: center;
  padding: 24px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-top: 32px;
}

.proof-item { text-align: center; }

.proof-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.2;
}

.proof-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.faq-accordion { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  color: var(--text-primary);
}

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: var(--accent-light);
  color: var(--accent);
  font-size: 1.25rem;
  transition: transform var(--transition);
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  color: var(--text-secondary);
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2,  1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
  margin: 0;
  padding-bottom: 4px;
}

.faq-item.open .faq-answer {
  padding: 0 24px 20px;
}

@media (prefers-reduced-motion: reduce) {
  .faq-answer { transition: none; }
  .faq-item.open .faq-answer { max-height: none; }
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-sans);
  font-size: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-white);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
}

.form-success {
  display: none;
  padding: 16px;
  background: #edfaf4;
  color: #0e6640;
  border-radius: var(--radius-sm);
  margin-top: 16px;
}

.form-success.show { display: block; }

.form-error {
  display: none;
  padding: 16px;
  background: #fef2f2;
  color: #991b1b;
  border-radius: var(--radius-sm);
  margin-top: 16px;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.form-error.show { display: block; }

.v0-field input.invalid,
.v0-field textarea.invalid,
.v0-field select.invalid {
  border-color: #dc2626;
  box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.12);
}

.scroll-animate {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-animate.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.scroll-animate.delay-1 { transition-delay: 0.1s; }
.scroll-animate.delay-2 { transition-delay: 0.2s; }
.scroll-animate.delay-3 { transition-delay: 0.3s; }

/* Sticky mobile audit CTA removed for launch — keep rule so leftover markup stays hidden */
.mobile-audit-cta {
  display: none !important;
}
