/* Brevard Digital — shared styles
   Palette chosen for colorblind safety (Okabe-Ito-inspired):
   - Primary accent: #22d3ee (bright cyan-green, high luminance — distinguishable across all CVD types)
   - Secondary: #4a9ff0 (blue)
   - Warning: #f0a04a (orange — used instead of red for "before" states, safer for deuteranopia/protanopia)
   - Symbols (✓ ✕) used alongside color, not in place of color. */

:root {
  --bg: #0a0a0f;
  --surface: #12121a;
  --surface2: #1a1a26;
  --border: rgba(255,255,255,0.07);
  --text: #f0f0f5;
  --muted: #8888a0;
  --accent: #22d3ee;
  --accent2: #4a9ff0;
  --accent3: #f0a04a;
  --warning: #f0a04a;
  --glow: rgba(74,240,160,0.15);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10,10,15,0.95); /* fallback for Firefox */
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
}

.logo span { color: var(--accent); }

nav ul {
  display: flex;
  gap: 32px;
  list-style: none;
}

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

nav ul a:hover { color: var(--text); }

.nav-cta {
  background: var(--accent);
  color: #000 !important;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 600 !important;
  transition: opacity 0.2s !important;
}

.nav-cta:hover { opacity: 0.85; }

/* HAMBURGER / MOBILE NAV */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 102;
  flex-shrink: 0;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 101;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.nav-mobile.open { display: flex; }

.nav-mobile ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 0 32px;
}

.nav-mobile ul a {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
  padding: 14px 0;
  text-align: center;
  width: 100%;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.nav-mobile ul a:hover { color: var(--accent); }

.nav-mobile ul li:last-child a {
  margin-top: 24px;
  background: var(--accent);
  color: #000;
  padding: 16px 40px;
  border-radius: 10px;
  border-bottom: none;
  font-size: 1.1rem;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 40px 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(74,240,160,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(74,159,240,0.06) 0%, transparent 60%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(74,240,160,0.1);
  border: 1px solid rgba(74,240,160,0.3);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 32px;
  animation: fadeUp 0.6s ease both;
}

.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  max-width: 800px;
  animation: fadeUp 0.6s 0.1s ease both;
}

h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 48px;
  font-weight: 300;
  animation: fadeUp 0.6s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.3s ease both;
}

.btn-primary {
  background: var(--accent);
  color: #000;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
  font-family: 'Syne', sans-serif;
  letter-spacing: -0.01em;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: #5fffb0;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(74,240,160,0.3);
}

.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}

.btn-secondary:hover {
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.04);
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 72px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
  animation: fadeUp 0.6s 0.4s ease both;
  flex-wrap: wrap;
}

.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
}

.stat-num span { color: var(--accent); }

.stat-label {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 4px;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* SECTION WRAPPER */
section {
  padding: 100px 40px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 520px;
  line-height: 1.7;
  font-weight: 300;
}

/* PROBLEM SECTION */
.problem {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.problem-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.problem-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.problem-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.problem-card h4 {
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.problem-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

/* HOW IT WORKS */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.step {
  position: relative;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: border-color 0.3s;
}

.step:hover {
  border-color: rgba(74,240,160,0.3);
}

.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(74,240,160,0.15);
  line-height: 1;
  margin-bottom: 20px;
}

.step h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.step p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

/* BEFORE / AFTER */
.ba-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 64px;
}

.ba-card {
  border-radius: 16px;
  padding: 36px;
  border: 1px solid var(--border);
}

.ba-card.before {
  background: rgba(240,160,74,0.05);
  border-color: rgba(240,160,74,0.2);
}

.ba-card.after {
  background: rgba(74,240,160,0.05);
  border-color: rgba(74,240,160,0.2);
}

.ba-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
  padding: 6px 14px;
  border-radius: 100px;
  display: inline-block;
}

.ba-card.before .ba-label {
  background: rgba(240,160,74,0.15);
  color: var(--warning);
}

.ba-card.after .ba-label {
  background: rgba(74,240,160,0.15);
  color: var(--accent);
}

.ba-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ba-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--muted);
}

.ba-item .dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
}

.ba-card.before .dot {
  background: rgba(240,160,74,0.2);
  color: var(--warning);
}

.ba-card.after .dot {
  background: rgba(74,240,160,0.2);
  color: var(--accent);
}

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

.plan {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 36px;
  position: relative;
  transition: transform 0.3s, border-color 0.3s;
}

.plan:hover {
  transform: translateY(-4px);
}

.plan.featured {
  border-color: rgba(74,240,160,0.4);
  background: linear-gradient(135deg, rgba(74,240,160,0.05) 0%, var(--surface) 100%);
}

.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #000;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
  font-family: 'Syne', sans-serif;
}

.plan-name {
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.plan-price {
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
}

.plan-price sup {
  font-size: 1.4rem;
  vertical-align: super;
  font-weight: 600;
}

.plan-period {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 32px;
}

.plan-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 28px;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--muted);
}

.plan-features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.plan-features li.plan-inherit {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-top: 1px solid var(--border);
  padding-top: 12px;
  margin-top: 4px;
}
.plan-features li.plan-inherit::before {
  content: '';
  display: none;
}

.plan-cta {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  font-family: 'Syne', sans-serif;
  letter-spacing: -0.01em;
  transition: all 0.2s;
}

.plan.featured .plan-cta {
  background: var(--accent);
  color: #000;
}

.plan.featured .plan-cta:hover {
  background: #5fffb0;
  box-shadow: 0 8px 30px rgba(74,240,160,0.3);
}

.plan:not(.featured) .plan-cta {
  background: var(--surface2);
  color: var(--text);
  border: 1px solid var(--border);
}

.plan:not(.featured) .plan-cta:hover {
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
}

/* AUDIT FORM */
.audit {
  background: linear-gradient(135deg, rgba(74,240,160,0.06) 0%, rgba(74,159,240,0.04) 100%);
  border-top: 1px solid rgba(74,240,160,0.15);
  border-bottom: 1px solid rgba(74,240,160,0.15);
}

.audit-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
}

.audit h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.audit p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 480px;
  font-weight: 300;
}

.audit-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 360px;
}

.audit-form input,
.audit-form select,
.audit-form textarea,
.custom-select {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 18px;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.audit-form input::placeholder,
.audit-form textarea::placeholder { color: var(--muted); }

.audit-form input:focus,
.audit-form select:focus,
.audit-form textarea:focus,
.custom-select:focus,
.custom-select.open {
  border-color: rgba(74,240,160,0.4);
}

/* ─── Custom dropdown (replaces native <select> for dark theme) ─── */
.custom-select {
  position: relative;
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.custom-select .cs-arrow {
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(45deg);
  transition: transform 0.2s, border-color 0.2s;
  flex-shrink: 0;
  margin-top: -4px;
}
.custom-select.open .cs-arrow {
  transform: rotate(-135deg);
  margin-top: 2px;
  border-color: var(--accent);
}
.custom-select .cs-label {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.custom-select .cs-label.placeholder { color: var(--muted); }
.cs-options {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #161620;
  border: 1px solid rgba(74,240,160,0.35);
  border-radius: 10px;
  overflow: hidden;
  z-index: 999;
  display: none;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.custom-select.open .cs-options { display: block; }
.cs-options li {
  list-style: none;
  padding: 12px 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.cs-options li:hover { background: rgba(74,240,160,0.1); color: var(--accent); }
.cs-options li.selected { color: var(--accent); font-weight: 500; }

.audit-form button {
  background: var(--accent);
  color: #000;
  border: none;
  border-radius: 8px;
  padding: 16px;
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.audit-form button:hover:not(:disabled) {
  background: #5fffb0;
  box-shadow: 0 8px 30px rgba(74,240,160,0.3);
  transform: translateY(-1px);
}

.audit-form button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.form-status {
  font-size: 0.88rem;
  padding: 10px 14px;
  border-radius: 6px;
  display: none;
  margin-top: 4px;
}

.form-status.show { display: block; }
.form-status.success {
  background: rgba(74,240,160,0.1);
  border: 1px solid rgba(74,240,160,0.3);
  color: var(--accent);
}
.form-status.error {
  background: rgba(240,160,74,0.1);
  border: 1px solid rgba(240,160,74,0.3);
  color: var(--warning);
}

/* FOUNDER / LOCAL */
.local-strip {
  background: var(--surface);
  padding: 32px 40px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.local-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.local-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(74,240,160,0.08);
  border: 1px solid rgba(74,240,160,0.2);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 500;
}

.local-cities {
  display: flex;
  gap: 24px;
  font-size: 0.85rem;
  color: var(--muted);
  flex-wrap: wrap;
}

.local-cities span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.local-cities span::before {
  content: '•';
  color: var(--accent);
}

/* FOUNDER */
.founder {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
  max-width: 900px;
  margin: 64px auto 0;
  padding: 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
}

.founder-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2.4rem;
  color: #000;
  flex-shrink: 0;
}

.founder-text h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.founder-text .role {
  font-size: 0.85rem;
  color: var(--accent);
  margin-bottom: 14px;
  font-weight: 500;
}

.founder-text p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* FAQ */
.faq-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item:hover { border-color: rgba(255,255,255,0.12); }

.faq-item summary {
  padding: 22px 28px;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  user-select: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--accent);
  font-weight: 400;
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 28px 22px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* SERVICES (niche pages) */
.niche-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 24px;
  transition: border-color 0.2s, transform 0.2s;
}

.niche-card:hover {
  border-color: rgba(74,240,160,0.3);
  transform: translateY(-2px);
}

.niche-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.niche-card .niche-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

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

.niche-samples {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.niche-sample {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px;
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.5;
}

.niche-sample .sample-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

/* LEGAL / TEXT PAGES */
.text-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 140px 40px 80px;
}

.text-page h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.text-page .updated {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 48px;
}

.text-page h2 {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 14px;
}

.text-page p,
.text-page li {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 14px;
}

.text-page ul {
  padding-left: 22px;
  margin-bottom: 16px;
}

.text-page a {
  color: var(--accent);
  text-decoration: none;
}

.text-page a:hover { text-decoration: underline; }

/* CONFIRMATION PAGES */
.confirm-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 40px 80px;
  position: relative;
  overflow: hidden;
}

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

.confirm-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(74,240,160,0.15);
  border: 1px solid rgba(74,240,160,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  font-size: 2.4rem;
  color: var(--accent);
}

.confirm-page h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  line-height: 1.1;
}

.confirm-page > .confirm-inner > p {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 40px;
}

.confirm-next {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 32px;
  text-align: left;
}

.confirm-next h3 {
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.confirm-next ol {
  padding-left: 22px;
  color: var(--muted);
}

.confirm-next li {
  margin-bottom: 10px;
  line-height: 1.6;
}

/* INTAKE FORM */
.intake-page {
  padding: 140px 40px 80px;
}

.intake-inner {
  max-width: 760px;
  margin: 0 auto;
}

.intake-header {
  text-align: center;
  margin-bottom: 48px;
}

.intake-header h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.intake-header p {
  color: var(--muted);
  font-size: 1.05rem;
}

.intake-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
}

.intake-section {
  margin-bottom: 36px;
}

.intake-section h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.intake-field {
  margin-bottom: 20px;
}

.intake-field label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.intake-field .hint {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 6px;
}

.intake-field input,
.intake-field select,
.intake-field textarea,
.intake-field .custom-select {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}

.intake-field textarea {
  resize: vertical;
  min-height: 90px;
}

.intake-field input:focus,
.intake-field select:focus,
.intake-field textarea:focus,
.intake-field .custom-select:focus,
.intake-field .custom-select.open {
  border-color: rgba(74,240,160,0.4);
}

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

.color-swatch-row {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 6px;
}

.color-swatch-row input[type="color"] {
  width: 44px;
  height: 44px;
  padding: 4px;
  border-radius: 8px;
  cursor: pointer;
  background: transparent;
}

/* FOOTER */
footer {
  padding: 48px 40px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
}

.footer-logo span { color: var(--accent); }

.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

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

.footer-links a:hover { color: var(--text); }

.footer-copy {
  font-size: 0.85rem;
  color: var(--muted);
}

.footer-social {
  display: flex;
  gap: 20px;
  margin-bottom: 16px;
  justify-content: center;
}

.footer-social a {
  color: var(--muted);
  transition: color 0.2s;
  display: flex;
  align-items: center;
}

.footer-social a:hover { color: var(--accent); }

/* RESPONSIVE */
@media (max-width: 900px) {
  nav { padding: 16px 20px; }
  nav ul { display: none; }
  .nav-hamburger { display: flex; }
  .hero { padding: 100px 20px 60px; }
  section { padding: 70px 20px; }
  .problem-grid,
  .ba-grid,
  .audit-inner { grid-template-columns: 1fr; gap: 40px; }
  .steps { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 28px; }
  .audit-form { min-width: unset; width: 100%; }
  footer { flex-direction: column; text-align: center; }
  .niche-samples { grid-template-columns: 1fr; }
  .founder { grid-template-columns: 1fr; text-align: center; padding: 32px 24px; }
  .founder-avatar { margin: 0 auto; }
  .intake-row { grid-template-columns: 1fr; }
  .intake-form { padding: 28px 20px; }
  .text-page { padding: 110px 20px 60px; }
}
