:root {
  --bg: #0a0a0a;
  --bg-elevated: #141414;
  --bg-card: #1a1a1a;
  --fg: #f0f0f0;
  --fg-muted: #888;
  --fg-dim: #555;
  --accent: #ff4d00;
  --accent-glow: rgba(255, 77, 0, 0.15);
  --accent-soft: #ff6b2b;
  --green: #00e676;
  --radius: 12px;
  --radius-sm: 8px;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 40px 60px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -300px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--accent);
  border: 1px solid rgba(255, 77, 0, 0.3);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 40px;
  width: fit-content;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.hero h1 .strike {
  text-decoration: line-through;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 4px;
}

.hero-sub {
  font-size: 19px;
  color: var(--fg-muted);
  max-width: 560px;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  font-size: 13px;
  color: var(--fg-muted);
  display: block;
  max-width: 160px;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--fg-dim);
}

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

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

.problem-text h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
}

.problem-text p {
  color: var(--fg-muted);
  margin-bottom: 20px;
  font-size: 16px;
}

.problem-highlight {
  color: var(--accent-soft) !important;
  font-weight: 500;
  font-size: 17px !important;
}

.problem-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.problem-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.problem-icon {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-glow);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.problem-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 17px;
  margin-bottom: 4px;
}

.problem-item p {
  color: var(--fg-muted);
  font-size: 14px;
  margin: 0;
}

/* ===== SERVICES ===== */
.services {
  padding: 120px 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.services-header {
  margin-bottom: 60px;
}

.services-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  margin-bottom: 12px;
}

.services-sub {
  color: var(--fg-muted);
  font-size: 18px;
}

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

.service-card {
  background: var(--bg-card);
  border: 1px solid #222;
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: border-color 0.2s;
}

.service-card:hover {
  border-color: #333;
}

.service-card.featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(255, 77, 0, 0.06) 0%, var(--bg-card) 100%);
}

.service-tier {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}

.service-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card li {
  color: var(--fg-muted);
  font-size: 15px;
  padding-left: 20px;
  position: relative;
}

.service-card li::before {
  content: '+';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}

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

.proof-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.proof-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  margin-bottom: 40px;
}

.proof-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 60px;
}

.tag {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--fg);
  background: var(--bg-card);
  border: 1px solid #333;
  padding: 10px 20px;
  border-radius: 100px;
  transition: border-color 0.2s, background 0.2s;
}

.tag:hover {
  border-color: var(--accent);
  background: var(--accent-glow);
}

.proof-quote {
  max-width: 680px;
  margin: 0 auto;
}

.proof-quote blockquote {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  font-style: italic;
  line-height: 1.4;
  color: var(--fg);
  margin-bottom: 16px;
}

.quote-context {
  color: var(--fg-muted);
  font-size: 16px;
}

/* ===== CLOSING ===== */
.closing {
  padding: 140px 40px;
  position: relative;
}

.closing::before {
  content: '';
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

.closing-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.closing-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
}

.closing-text {
  color: var(--fg-muted);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 40px;
}

.closing-location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--fg-dim);
  font-size: 14px;
  font-family: var(--font-display);
}

.dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
}

/* ===== FOOTER ===== */
.footer {
  padding: 40px;
  border-top: 1px solid #1a1a1a;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
}

.footer-meta {
  color: var(--fg-dim);
  font-size: 14px;
}

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

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.5px;
}

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

.nav-link {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 15px;
  font-family: var(--font-display);
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: color 0.2s;
}

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

.nav-cta {
  color: var(--accent);
  text-decoration: none;
  font-size: 14px;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 10px 20px;
  border: 1px solid rgba(255, 77, 0, 0.4);
  border-radius: 100px;
  transition: background 0.2s, border-color 0.2s;
}

.nav-cta:hover {
  background: var(--accent-glow);
  border-color: var(--accent);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
}

/* ===== PAGE SHARED ===== */
.page-main {
  padding-top: 64px; /* nav height offset */
}

.page-header {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 40px 60px;
}

.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -2px;
  margin-bottom: 20px;
  margin-top: 24px;
}

.page-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.65;
}

/* Hero gets nav offset too */
.hero { padding-top: 120px; }

/* ===== SHARED BUTTONS ===== */
.btn-hero {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 100px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
  letter-spacing: 0.3px;
}

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

/* ===== PRICING PAGE ===== */
.pricing-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid #222;
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
}

.pricing-featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(255, 77, 0, 0.07) 0%, var(--bg-card) 100%);
}

.pricing-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-tier-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 10px;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -1px;
}

.price-period {
  color: var(--fg-muted);
  font-size: 16px;
}

.pricing-tagline {
  color: var(--fg-muted);
  font-size: 15px;
  margin-bottom: 28px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid #222;
}

.pricing-features li {
  color: var(--fg-muted);
  font-size: 14px;
  padding-left: 20px;
  position: relative;
}

.pricing-features li::before {
  content: '+';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.pricing-note {
  color: var(--fg-dim);
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 24px;
}

.btn-pricing {
  display: block;
  text-align: center;
  color: var(--fg);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  padding: 14px;
  border: 1px solid #333;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}

.btn-pricing:hover {
  border-color: var(--accent);
  background: var(--accent-glow);
}

.btn-pricing-featured {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.btn-pricing-featured:hover {
  opacity: 0.88;
  background: var(--accent);
}

.pricing-faq {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 40px;
  border-top: 1px solid #1a1a1a;
}

.pricing-faq h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.faq-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--fg);
}

.faq-item p {
  color: var(--fg-muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.pricing-cta-strip {
  background: var(--bg-elevated);
  padding: 80px 40px;
  text-align: center;
  margin-top: 40px;
}

.pricing-cta-strip h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  margin-bottom: 16px;
}

.pricing-cta-strip p {
  color: var(--fg-muted);
  font-size: 17px;
  max-width: 480px;
  margin: 0 auto 32px;
}

/* ===== WORK / PORTFOLIO PAGE ===== */
.work-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 40px;
  border-top: 1px solid #1a1a1a;
}

.work-section-alt {
  max-width: 100%;
  background: var(--bg-elevated);
  padding: 80px 40px;
}

.work-section-alt .niches-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.work-section-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  margin-bottom: 12px;
}

.work-section-sub {
  color: var(--fg-muted);
  font-size: 17px;
  max-width: 600px;
  margin-bottom: 48px;
}

.work-section-alt h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  margin-bottom: 12px;
}

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

.hook-card {
  background: var(--bg-card);
  border: 1px solid #222;
  border-radius: var(--radius);
  padding: 32px 28px;
}

.hook-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-glow);
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.hook-label {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.hook-card p {
  color: var(--fg-muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.hook-example {
  font-style: italic;
  color: var(--accent-soft);
  font-size: 14px;
  border-left: 2px solid var(--accent);
  padding-left: 12px;
}

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

.niche-card {
  background: var(--bg-card);
  border: 1px solid #222;
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: border-color 0.2s;
}

.niche-card:hover { border-color: #333; }

.niche-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.niche-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
}

.niche-hook {
  color: var(--fg-dim);
  font-size: 12px;
  line-height: 1.5;
}

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

.result-stat {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.result-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -1px;
}

.result-desc {
  color: var(--fg-muted);
  font-size: 14px;
  line-height: 1.55;
}

/* ===== AUDIT / CONTACT PAGE ===== */
.audit-layout {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 40px 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.audit-pitch h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  margin-top: 20px;
}

.audit-pitch-sub {
  color: var(--fg-muted);
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 40px;
}

.audit-perks {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.audit-perk {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.perk-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 230, 118, 0.12);
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.audit-perk strong {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  margin-bottom: 4px;
}

.audit-perk p {
  color: var(--fg-muted);
  font-size: 13px;
  line-height: 1.55;
  margin: 0;
}

.audit-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--fg-dim);
  font-size: 13px;
  font-family: var(--font-display);
}

/* Form card */
.audit-form-card {
  background: var(--bg-card);
  border: 1px solid #222;
  border-radius: var(--radius);
  padding: 40px 36px;
}

.audit-form-card h2 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 6px;
}

.form-sub {
  color: var(--fg-muted);
  font-size: 14px;
  margin-bottom: 28px;
}

.audit-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--fg-muted);
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-elevated);
  border: 1px solid #2a2a2a;
  border-radius: var(--radius-sm);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--fg-dim);
}

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

.form-group select option {
  background: var(--bg-card);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-error {
  color: #ff6b6b;
  font-size: 13px;
  background: rgba(255, 107, 107, 0.08);
  border: 1px solid rgba(255, 107, 107, 0.2);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
}

.btn-submit {
  width: 100%;
  padding: 16px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: opacity 0.2s;
  letter-spacing: 0.3px;
}

.btn-submit:hover { opacity: 0.88; }
.btn-submit:disabled { opacity: 0.5; cursor: not-allowed; }

/* Audit success */
.audit-success {
  background: var(--bg-card);
  border: 1px solid rgba(0, 230, 118, 0.2);
  border-radius: var(--radius);
  padding: 60px 40px;
  text-align: center;
}

.success-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.audit-success h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}

.audit-success p {
  color: var(--fg-muted);
  font-size: 16px;
  max-width: 360px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero { padding: 100px 24px 40px; }
  .hero-stats { gap: 20px; }
  .stat-divider { display: none; }
  .stat-num { font-size: 28px; }

  .nav-inner { padding: 0 24px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--bg-elevated); border-bottom: 1px solid #222; padding: 16px 24px; gap: 4px; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  .page-header { padding: 48px 24px 40px; }

  .problem { padding: 80px 24px; }
  .problem-grid { grid-template-columns: 1fr; gap: 48px; }

  .services { padding: 80px 24px; }
  .services-grid { grid-template-columns: 1fr; gap: 16px; }

  .proof { padding: 80px 24px; }
  .proof-quote blockquote { font-size: 20px; }

  .closing { padding: 100px 24px; }
  .closing-location { flex-direction: column; gap: 8px; }
  .closing-location .dot { display: none; }

  .footer { padding: 24px; }
  .footer-inner { flex-direction: column; gap: 8px; text-align: center; }

  .pricing-grid { grid-template-columns: 1fr; padding: 0 24px 60px; }
  .faq-grid { grid-template-columns: 1fr; }
  .pricing-faq { padding: 40px 24px; }
  .pricing-cta-strip { padding: 60px 24px; }

  .hook-grid { grid-template-columns: 1fr; }
  .niches-grid { grid-template-columns: repeat(2, 1fr); }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .work-section { padding: 60px 24px; }
  .work-section-alt { padding: 60px 24px; }

  .audit-layout { grid-template-columns: 1fr; gap: 40px; padding: 40px 24px 80px; }
  .audit-form-card { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
}