:root {
  --bg: #0a0a0a;
  --bg-elevated: #111111;
  --bg-card: #161616;
  --fg: #f0ece4;
  --fg-muted: #8a8680;
  --fg-dim: #4a4642;
  --accent: #e8ff47;
  --accent-dim: rgba(232, 255, 71, 0.1);
  --accent-glow: rgba(232, 255, 71, 0.05);
  --orange: #ff6b35;
  --radius: 12px;
  --radius-lg: 20px;
  --nav-h: 68px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', -apple-system, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', -apple-system, sans-serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* ========== NAV ========== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--fg);
}

.nav-cta {
  display: inline-block;
  padding: 10px 22px;
  background: var(--accent);
  color: #0a0a0a;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s;
  flex-shrink: 0;
}

.nav-cta:hover {
  background: #d4ea35;
  transform: translateY(-1px);
}

/* ========== SHARED ========== */
.section-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 20px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 600px;
  margin-bottom: 60px;
  line-height: 1.7;
}

.btn-primary {
  display: inline-block;
  padding: 16px 36px;
  background: var(--accent);
  color: #0a0a0a;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
}

.btn-primary:hover {
  background: #d4ea35;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 255, 71, 0.2);
}

.btn-ghost {
  display: inline-block;
  padding: 16px 28px;
  background: transparent;
  color: var(--fg-muted);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.25s;
}

.btn-ghost:hover {
  color: var(--fg);
  border-color: rgba(255,255,255,0.2);
}

.btn-large {
  padding: 20px 48px;
  font-size: 1.1rem;
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + 80px) 24px 100px;
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(232, 255, 71, 0.07) 0%, transparent 60%),
    var(--bg);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.hero-inner {
  max-width: 860px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid rgba(232, 255, 71, 0.25);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 40px;
  background: rgba(232, 255, 71, 0.05);
}

.hero h1 {
  font-size: clamp(2.8rem, 7.5vw, 5.5rem);
  font-weight: 700;
  margin-bottom: 28px;
  color: var(--fg);
}

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

.lede {
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  color: var(--fg-muted);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.75;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 24px 32px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 24px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--fg-muted);
}

.trust-icon {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
}

.trust-divider {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,0.07);
  flex-shrink: 0;
}

/* ========== PROBLEM ========== */
.problem {
  padding: 120px 24px;
  background: var(--bg-elevated);
}

.problem-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.problem h2,
.verticals h2,
.how h2,
.testimonials h2,
.services h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  margin-bottom: 56px;
  max-width: 700px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.problem-card {
  background: var(--bg-elevated);
  padding: 44px 36px;
  transition: background 0.3s;
}

.problem-card:hover {
  background: var(--bg-card);
}

.problem-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  border-radius: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 28px;
}

.problem-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 14px;
}

.problem-card p {
  font-size: 0.93rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ========== SERVICES ========== */
.services {
  padding: 120px 24px;
  background: var(--bg);
}

.services-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}

.service-card:hover {
  border-color: rgba(232, 255, 71, 0.15);
  transform: translateY(-3px);
}

.service-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.7;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-tag {
  display: inline-block;
  padding: 5px 14px;
  background: var(--accent-dim);
  border: 1px solid rgba(232, 255, 71, 0.15);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ========== VERTICALS ========== */
.verticals {
  padding: 120px 24px;
  background: var(--bg-elevated);
}

.verticals-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.verticals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.vertical-card {
  background: var(--bg);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: transform 0.3s, border-color 0.3s;
}

.vertical-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 255, 71, 0.2);
}

.vertical-emoji {
  font-size: 2.2rem;
  margin-bottom: 20px;
  display: block;
}

.vertical-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.vertical-card p {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ========== HOW IT WORKS ========== */
.how {
  padding: 120px 24px;
  background: var(--bg);
}

.how-inner {
  max-width: 800px;
  margin: 0 auto;
}

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.how-step {
  display: flex;
  gap: 36px;
  padding: 44px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.how-step:last-child {
  border-bottom: none;
}

.step-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.2;
  line-height: 1;
  min-width: 80px;
}

.step-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.step-content p {
  font-size: 0.98rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  padding: 120px 24px;
  background: var(--bg-elevated);
}

.testimonials-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  transition: border-color 0.3s;
}

.testimonial-card:hover {
  border-color: rgba(232, 255, 71, 0.12);
}

.testimonial-card.featured-quote {
  border-color: rgba(232, 255, 71, 0.2);
  background: var(--bg-elevated);
}

.quote-mark {
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 0.8;
  color: var(--accent);
  opacity: 0.4;
  margin-bottom: 20px;
}

.quote-text {
  font-size: 0.97rem;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 32px;
  font-style: italic;
}

.quote-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid rgba(232, 255, 71, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}

.author-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 3px;
}

.author-role {
  font-size: 0.82rem;
  color: var(--fg-dim);
}

/* ========== CLOSING ========== */
.closing {
  padding: 140px 24px;
  background: var(--bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 255, 71, 0.04) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.closing-inner {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.closing-accent {
  width: 60px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin: 0 auto 44px;
}

.closing h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 28px;
  line-height: 1.2;
}

.closing-text {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 48px;
}

.closing-fine {
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--fg-dim);
}

/* ========== AUDIT / CONTACT ========== */
.audit {
  padding: 120px 24px;
  background: var(--bg-elevated);
}

.audit-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.audit-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 20px;
}

.audit-content > p {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 36px;
}

.audit-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.audit-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

.bullet-check {
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.audit-form {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
}

.audit-form h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.form-sub {
  font-size: 0.9rem;
  color: var(--fg-dim);
  margin-bottom: 32px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.form-field input,
.form-field select {
  background: var(--bg-elevated);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}

.form-field input::placeholder {
  color: var(--fg-dim);
}

.form-field input:focus,
.form-field select:focus {
  border-color: rgba(232, 255, 71, 0.35);
}

.form-field select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a8680' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-field select option {
  background: var(--bg-card);
  color: var(--fg);
}

.form-submit {
  display: block;
  width: 100%;
  padding: 16px;
  background: var(--accent);
  color: #0a0a0a;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.25s;
  margin-top: 4px;
}

.form-submit:hover:not(:disabled) {
  background: #d4ea35;
  transform: translateY(-1px);
}

.form-submit:disabled {
  opacity: 0.6;
  cursor: default;
}

.form-fine {
  font-size: 0.8rem;
  color: var(--fg-dim);
  text-align: center;
  margin-top: 4px;
}

.form-success {
  text-align: center;
  padding: 40px 0;
}

.success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 2px solid rgba(232, 255, 71, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--accent);
  margin: 0 auto 20px;
}

.form-success h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.form-success p {
  font-size: 0.95rem;
  color: var(--fg-muted);
}

/* ========== PRICING ========== */
.pricing {
  padding: 120px 24px;
  background: var(--bg);
}

.pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 20px;
}

.pricing h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  margin-bottom: 20px;
  max-width: 700px;
  line-height: 1.15;
}

.pricing-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 600px;
  margin-bottom: 60px;
  line-height: 1.7;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.3s;
}

.pricing-card:hover {
  border-color: rgba(232, 255, 71, 0.15);
}

.pricing-card.featured {
  border-color: rgba(232, 255, 71, 0.35);
  background: var(--bg-elevated);
  transform: scale(1.02);
}

.pricing-card.featured:hover {
  border-color: rgba(232, 255, 71, 0.5);
}

.plan-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  align-self: flex-start;
}

.starter-badge {
  background: rgba(255, 255, 255, 0.06);
  color: var(--fg-muted);
}

.growth-badge {
  background: var(--accent);
  color: #0a0a0a;
}

.premium-badge {
  background: rgba(255, 107, 53, 0.15);
  color: var(--orange);
}

.plan-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1;
}

.plan-period {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--fg-muted);
}

.plan-tagline {
  font-size: 0.88rem;
  color: var(--fg-dim);
  margin-bottom: 32px;
  line-height: 1.5;
}

.plan-features {
  list-style: none;
  margin-bottom: 36px;
  flex: 1;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--fg-muted);
  margin-bottom: 14px;
  line-height: 1.5;
}

.plan-features li strong {
  color: var(--fg);
}

.plan-features li em {
  font-style: italic;
  color: var(--fg-dim);
}

.feature-icon {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 2px;
  flex-shrink: 0;
}

.plan-cta {
  display: block;
  text-align: center;
  padding: 14px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.25s;
  margin-top: auto;
}

.starter-cta {
  background: rgba(255, 255, 255, 0.06);
  color: var(--fg);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.starter-cta:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.growth-cta {
  background: var(--accent);
  color: #0a0a0a;
}

.growth-cta:hover {
  background: #d4ea35;
  transform: translateY(-1px);
}

.premium-cta {
  background: var(--orange);
  color: #fff;
}

.premium-cta:hover {
  background: #e85a22;
  transform: translateY(-1px);
}

.pricing-note {
  text-align: center;
  margin-top: 48px;
  font-size: 0.85rem;
  color: var(--fg-dim);
}

/* ========== FOOTER ========== */
.footer {
  padding: 56px 24px;
  background: var(--bg);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg);
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.footer-nav a {
  font-size: 0.88rem;
  color: var(--fg-dim);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--fg-muted);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-sub {
  font-size: 0.83rem;
  color: var(--fg-dim);
}

.footer-trust {
  font-size: 0.83rem;
  color: var(--fg-dim);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .audit-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

@media (max-width: 900px) {
  .problem-grid,
  .services-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

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

  .nav-links {
    display: none;
  }

  .trust-strip {
    flex-direction: column;
    gap: 0;
  }

  .trust-divider {
    width: 40px;
    height: 1px;
  }
}

@media (max-width: 600px) {
  .verticals-grid {
    grid-template-columns: 1fr;
  }

  .how-step {
    flex-direction: column;
    gap: 16px;
  }

  .step-number {
    font-size: 2.4rem;
    min-width: auto;
  }

  .hero {
    padding: calc(var(--nav-h) + 48px) 20px 80px;
  }

  .problem,
  .services,
  .verticals,
  .how,
  .testimonials,
  .closing,
  .audit,
  .pricing {
    padding: 80px 20px;
  }

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

  .pricing-card.featured {
    transform: none;
  }

  .audit-form {
    padding: 36px 28px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-ctas a {
    text-align: center;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-nav {
    flex-wrap: wrap;
    gap: 16px;
  }
}
