:root {
  --bg: #0a0a0f;
  --bg-subtle: #12121a;
  --fg: #e8e6e1;
  --fg-muted: #8a8880;
  --accent: #f0c040;
  --accent-dim: #c49a20;
  --border: #1e1e2a;
  --surface: #16161f;
  --radius: 12px;
  --max-w: 1080px;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .hero-badge, .step-num, .comp-header, .footer-brand, .problem-number {
  font-family: 'Space Grotesk', sans-serif;
}

.section-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 2.5rem;
}

/* === NAV === */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

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

.nav-brand:hover { color: var(--accent); transition: color 0.2s; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

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

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

.nav-cta {
  color: #0a0a0f !important;
  background: var(--accent);
  padding: 0.45rem 1.1rem;
  border-radius: 8px;
  font-weight: 600 !important;
  font-size: 0.875rem !important;
  transition: background 0.2s !important;
}

.nav-cta:hover {
  background: var(--accent-dim) !important;
  color: #0a0a0f !important;
}

/* === BUTTONS === */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #0a0a0f;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.75rem;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
  background: var(--accent-dim);
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-block;
  border: 1px solid var(--border);
  color: var(--fg);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.75rem;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover {
  border-color: var(--fg-muted);
  color: var(--accent);
}

.btn-full { width: 100%; text-align: center; }

.btn-large {
  font-size: 1.05rem;
  padding: 1rem 2.25rem;
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  overflow: hidden;
  text-align: center;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
}

.hero-glow {
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(240,192,64,0.08) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  border: 1px solid var(--accent-dim);
  padding: 0.4rem 1.2rem;
  border-radius: 100px;
  margin-bottom: 2rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

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

.lede {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

/* === PAGE HERO (interior pages) === */
.page-hero {
  position: relative;
  padding: 7rem 2rem 5rem;
  text-align: center;
  overflow: hidden;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
}

.page-hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

/* === PROBLEM === */
.problem {
  padding: 6rem 2rem;
  background: var(--bg-subtle);
}

.problem-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.problem-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
}

.problem-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

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

.problem-statement {
  font-size: 1.3rem;
  text-align: center;
  color: var(--fg);
  max-width: 700px;
  margin: 0 auto;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
}

/* === HOW === */
.how { padding: 6rem 2rem; }

.how-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.step-num {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent-dim);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 1rem;
}

.step h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--fg);
}

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

/* === NUMBERS === */
.numbers {
  padding: 6rem 2rem;
  background: var(--bg-subtle);
}

.numbers-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.comparison {
  display: flex;
  align-items: stretch;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.comp-col { flex: 1; padding: 2.5rem; }
.comp-old { background: var(--surface); }
.comp-new {
  background: linear-gradient(135deg, rgba(240,192,64,0.08), rgba(240,192,64,0.02));
  border-left: 2px solid var(--accent-dim);
}

.comp-header {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--fg);
}

.comp-new .comp-header { color: var(--accent); }
.comp-col ul { list-style: none; }

.comp-col li {
  padding: 0.6rem 0;
  color: var(--fg-muted);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border);
}

.comp-col li:last-child { border-bottom: none; }

.comp-val {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  color: var(--fg);
}

.comp-new .comp-val { color: var(--accent); }

.comp-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--fg-muted);
  background: var(--surface);
}

/* === CLOSING === */
.closing { padding: 8rem 2rem; text-align: center; }

.closing-inner { max-width: 750px; margin: 0 auto; }

.closing h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.closing-sub { font-size: 1.1rem; color: var(--fg-muted); line-height: 1.7; }

/* === FOOTER === */
.site-footer {
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-brand {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.25rem;
}

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

.footer-contact {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-email {
  color: var(--accent);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: 'Space Grotesk', sans-serif;
  transition: color 0.2s;
}

.footer-email:hover { color: var(--accent-dim); }

.footer-links { display: flex; gap: 1.5rem; justify-content: flex-end; }

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

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

/* === PORTFOLIO === */
.portfolio-section { padding: 4rem 2rem 6rem; }

.portfolio-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.demo-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface);
}

.demo-header {
  padding: 2.5rem 2.5rem 2rem;
  border-bottom: 1px solid var(--border);
}

.demo-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  border: 1px solid var(--accent-dim);
  padding: 0.25rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.demo-title {
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}

.demo-desc {
  color: var(--fg-muted);
  font-size: 0.97rem;
  max-width: 680px;
  line-height: 1.65;
}

.before-after {
  display: grid;
  grid-template-columns: 1fr 48px 1fr;
  align-items: stretch;
}

.ba-panel { padding: 2rem 2.5rem; }
.ba-before { background: rgba(255,255,255,0.01); }
.ba-after { background: rgba(240,192,64,0.025); }

.ba-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--fg-muted);
  margin-bottom: 1.25rem;
}

.ba-label-after { color: var(--accent); }

.ba-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-subtle);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

.ba-arrow {
  font-size: 1.4rem;
  color: var(--accent);
  font-weight: 700;
}

.ba-mockup {
  background: #0d0d14;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  min-height: 160px;
  font-size: 0.78rem;
}

.mockup-nav-old {
  background: #1a1a26;
  border-bottom: 1px solid var(--border);
  padding: 0.5rem 1rem;
  display: flex;
  gap: 1.25rem;
  color: var(--fg-muted);
}

.mockup-content-old { padding: 1.25rem 1rem; }

.old-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--fg);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.old-text {
  color: var(--fg-muted);
  font-size: 0.75rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.old-img-placeholder {
  background: var(--border);
  height: 48px;
  border-radius: 4px;
  margin-bottom: 0.6rem;
  opacity: 0.4;
}

.salon-ph { background: #2a1a2a; opacity: 0.3; }
.yoga-ph { background: #1a2a1e; opacity: 0.3; }

.old-hours { color: var(--fg-muted); font-size: 0.72rem; }

.mockup-hero-after {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 100%);
  padding: 1.5rem 1rem 1rem;
  border-bottom: 1px solid var(--border);
}

.salon-hero { background: linear-gradient(135deg, #1a1020 0%, #0f0a14 100%); }
.contractor-hero { background: linear-gradient(135deg, #101820 0%, #0a0f14 100%); }
.yoga-hero { background: linear-gradient(135deg, #0a1a15 0%, #081210 100%); }

.mock-hero-text {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--fg);
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

.mock-hero-text span { color: var(--accent); }

.mock-cta-row { display: flex; gap: 0.5rem; flex-wrap: wrap; }

.mock-btn {
  background: var(--accent);
  color: #0a0a0f;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.68rem;
  padding: 0.3rem 0.75rem;
  border-radius: 6px;
}

.mock-btn-ghost {
  border: 1px solid var(--border);
  color: var(--fg);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.68rem;
  padding: 0.3rem 0.75rem;
  border-radius: 6px;
}

.mockup-features-row, .mockup-services-row {
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  flex-wrap: wrap;
}

.mock-feature, .mock-service {
  font-size: 0.68rem;
  color: var(--fg-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  white-space: nowrap;
}

.ba-problems, .ba-wins {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ba-problems li, .ba-wins li {
  font-size: 0.88rem;
  color: var(--fg-muted);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.45;
}

.ba-problems li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: #c06060;
  font-size: 0.75rem;
  top: 0.05rem;
}

.ba-wins li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.75rem;
  top: 0.05rem;
}

.portfolio-cta, .pricing-cta {
  padding: 6rem 2rem;
  background: var(--bg-subtle);
  text-align: center;
  border-top: 1px solid var(--border);
}

.portfolio-cta-inner, .pricing-cta-inner {
  max-width: 600px;
  margin: 0 auto;
}

.portfolio-cta h2, .pricing-cta h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.portfolio-cta p, .pricing-cta p {
  color: var(--fg-muted);
  margin-bottom: 2rem;
  font-size: 1rem;
}

/* === PRICING === */
.pricing-section { padding: 4rem 2rem 6rem; }

.pricing-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
  margin-bottom: 5rem;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
}

.pricing-featured {
  background: linear-gradient(160deg, rgba(240,192,64,0.07), rgba(240,192,64,0.02));
  border-color: var(--accent-dim);
  box-shadow: 0 0 40px rgba(240,192,64,0.07);
}

.pricing-badge-top {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #0a0a0f;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 1rem;
  border-radius: 0 0 8px 8px;
}

.pricing-tier {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--fg-muted);
  margin-top: 0.5rem;
}

.pricing-featured .pricing-tier { color: var(--accent); }

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.price-setup {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.03em;
}

.price-label { font-size: 0.85rem; color: var(--fg-muted); }

.pricing-monthly {
  font-size: 0.9rem;
  color: var(--fg-muted);
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.pricing-monthly strong {
  color: var(--fg);
  font-family: 'Space Grotesk', sans-serif;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.pricing-features li {
  font-size: 0.9rem;
  color: var(--fg-muted);
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  line-height: 1.4;
}

.check {
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 0.8rem;
  margin-top: 0.1rem;
}

.pricing-faq {
  padding-top: 4rem;
  border-top: 1px solid var(--border);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.faq-item h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.faq-item p { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.65; }

/* === MOBILE === */
@media (max-width: 768px) {
  .nav-links a:not(.nav-cta) { display: none; }

  .problem-grid, .steps { grid-template-columns: 1fr; }
  .steps { gap: 2rem; }

  .comparison { flex-direction: column; }
  .comp-vs { padding: 1rem; }
  .comp-new { border-left: none; border-top: 2px solid var(--accent-dim); }

  .footer-inner { flex-direction: column; gap: 1.5rem; }
  .footer-contact { text-align: left; }
  .footer-links { justify-content: flex-start; }

  .hero { min-height: 70vh; }

  .before-after { grid-template-columns: 1fr; }
  .ba-divider {
    padding: 1rem 0;
    border-left: none;
    border-right: none;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .ba-arrow { display: inline-block; transform: rotate(90deg); }
  .demo-header { padding: 1.75rem; }
  .ba-panel { padding: 1.5rem 1.75rem; }

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

/* === TOAST (mailto feedback) === */
.pricing-toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--surface);
  color: var(--fg);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.85rem 1.5rem;
  border-radius: 10px;
  border: 1px solid var(--accent-dim);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
  white-space: nowrap;
}

.pricing-toast-show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
