/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #08080d;
  --bg-alt: #0e0e17;
  --surface: #14141f;
  --border: rgba(255,255,255,0.07);
  --fg: #ede9df;
  --fg-muted: rgba(237,233,223,0.55);
  --accent: #e8950a;
  --accent-dim: rgba(232,149,10,0.12);
  --accent-glow: rgba(232,149,10,0.25);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --max-w: 1160px;
  --radius: 8px;
}

html {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 24px;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  background: rgba(8,8,13,0.8);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 60px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--fg);
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  border-left: 1px solid var(--border);
  padding-left: 16px;
  margin-left: 2px;
}
.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: var(--radius);
  transition: color 0.2s ease, background 0.2s ease;
}
.nav-link:hover { color: var(--fg); background: rgba(255,255,255,0.05); }
.nav-link--cta {
  color: var(--accent);
  border: 1px solid rgba(232,149,10,0.3);
  background: var(--accent-dim);
}
.nav-link--cta:hover {
  background: rgba(232,149,10,0.2);
  color: var(--accent);
}

/* ── Shared Section Styles ── */
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 48px;
  max-width: 620px;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 70% 50%, rgba(232,149,10,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 80% 50% at 30% 20%, rgba(232,149,10,0.03) 0%, transparent 60%),
    linear-gradient(160deg, var(--bg) 0%, var(--bg-alt) 100%);
}
.hero-shimmer {
  position: absolute;
  top: 0; right: 0;
  width: 600px; height: 600px;
  background: radial-gradient(ellipse at 80% 20%, rgba(232,149,10,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: rgba(255,255,255,0.03);
}
.eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-lede {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--fg-muted);
  margin-bottom: 40px;
  max-width: 480px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 13px 24px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.1s ease;
  letter-spacing: 0.01em;
}
.btn-primary:hover { opacity: 0.88; }
.btn-primary:active { transform: scale(0.98); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--fg-muted);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 13px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.btn-secondary:hover { color: var(--fg); border-color: rgba(255,255,255,0.15); }
.hero-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(20,20,31,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 16px 8px 10px;
}
.trust-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 6px var(--accent);
}
.hero-trust-badge span {
  font-size: 0.78rem;
  color: var(--fg-muted);
  font-weight: 500;
}
.hero-copy { grid-column: 1; }
.hero-illustration {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone-frame {
  width: 260px;
  background: #1a1a28;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 36px;
  padding: 16px 14px 20px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04) inset;
  position: relative;
}
.phone-notch {
  width: 80px; height: 22px;
  background: #0e0e17;
  border-radius: 0 0 14px 14px;
  margin: 0 auto 12px;
}
.phone-screen {
  background: #0e0e17;
  border-radius: 20px;
  padding: 16px 14px;
  border: 1px solid rgba(255,255,255,0.06);
}
.call-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.call-ai-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 3px 8px;
  border-radius: 100px;
}
.call-status-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 6px #10b981;
  animation: pulse 1.5s ease-in-out infinite;
}
.call-waves {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 40px;
  margin-bottom: 14px;
}
.wave-bar {
  flex: 1;
  background: var(--accent);
  border-radius: 2px;
  animation: wave 1.2s ease-in-out infinite;
}
.wave-bar:nth-child(1) { animation-delay: 0s; }
.wave-bar:nth-child(2) { animation-delay: 0.1s; }
.wave-bar:nth-child(3) { animation-delay: 0.2s; }
.wave-bar:nth-child(4) { animation-delay: 0.3s; }
.wave-bar:nth-child(5) { animation-delay: 0.15s; }
.wave-bar:nth-child(6) { animation-delay: 0.05s; }
.wave-bar:nth-child(7) { animation-delay: 0.25s; }
.wave-bar:nth-child(8) { animation-delay: 0.35s; }
@keyframes wave {
  0%, 100% { height: 8px; opacity: 0.4; }
  50% { height: 28px; opacity: 1; }
}
.call-info { margin-bottom: 14px; }
.call-number {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 4px;
}
.call-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
}
.call-actions {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}
.call-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--fg-muted);
}
.call-btn--accept { color: #10b981; border-color: rgba(16,185,129,0.3); }
.call-btn--book { background: var(--accent-dim); border-color: rgba(232,149,10,0.3); color: var(--accent); }
.call-btn--book span { font-size: 0.72rem; font-weight: 600; }
.call-log {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 1px solid var(--border);
  padding-top: 12px;
}
.log-entry {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.log-time {
  font-size: 0.62rem;
  color: rgba(237,233,223,0.3);
}
.log-text {
  font-size: 0.72rem;
  color: var(--fg-muted);
  line-height: 1.5;
  font-style: italic;
}
.log-entry--ai .log-text { color: var(--accent); }
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}
.stat {
  display: flex;
  flex-direction: column;
  padding: 0 28px;
}
.stat:first-child { padding-left: 0; }
.stat-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ── Proof ── */
.proof {
  padding: 80px 24px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.proof-inner { max-width: var(--max-w); margin: 0 auto; }
.proof-header { margin-bottom: 48px; }
.proof-headline {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 600;
  line-height: 1.3;
  color: var(--fg);
  max-width: 600px;
  margin-top: 10px;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 40px;
}
.proof-card {
  background: var(--surface);
  padding: 32px 28px;
}
.proof-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}
.proof-text {
  font-size: 0.95rem;
  color: var(--fg);
  margin-bottom: 8px;
  font-weight: 500;
}
.proof-source {
  font-size: 0.72rem;
  color: var(--fg-muted);
}
.proof-callout {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--accent-dim);
}
.callout-icon {
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.proof-callout p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ── Features ── */
.features {
  padding: 100px 24px;
  background: var(--bg);
}
.features-inner { max-width: var(--max-w); margin: 0 auto; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.feature-card {
  background: var(--bg);
  padding: 36px 32px;
  transition: background 0.2s ease;
}
.feature-card:hover { background: var(--bg-alt); }
.feature-icon {
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--accent-dim);
  color: var(--accent);
  margin-bottom: 20px;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--fg-muted);
}

/* ── How It Works ── */
.how {
  padding: 100px 24px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.how-inner { max-width: var(--max-w); margin: 0 auto; }
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.step:last-child { border-bottom: none; }
.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  padding-top: 4px;
}
.step-body h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}
.step-body p {
  font-size: 0.925rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 560px;
}

/* ── Trades ── */
.trades {
  padding: 100px 24px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.trades-inner { max-width: var(--max-w); margin: 0 auto; }
.trades-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.trade-card {
  padding: 32px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.trade-card:hover {
  border-color: rgba(232,149,10,0.3);
  background: rgba(232,149,10,0.04);
}
.trade-icon {
  color: var(--accent);
  margin-bottom: 20px;
}
.trade-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}
.trade-card p {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ── Pricing ── */
.pricing {
  padding: 100px 24px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.pricing-inner { max-width: var(--max-w); margin: 0 auto; }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}
.pricing-card {
  padding: 40px 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}
.pricing-card--featured {
  border-color: rgba(232,149,10,0.35);
  background: linear-gradient(160deg, rgba(232,149,10,0.06) 0%, var(--surface) 60%);
}
.pricing-tier {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 12px;
}
.pricing-price small {
  font-size: 1rem;
  color: var(--fg-muted);
  font-family: var(--font-body);
  font-weight: 400;
}
.pricing-desc {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 28px;
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-features li {
  font-size: 0.875rem;
  color: var(--fg-muted);
  padding-left: 20px;
  position: relative;
}
.pricing-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.8rem;
}
.pricing-model {
  padding: 20px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  text-align: center;
}
.pricing-model p {
  font-size: 0.9rem;
  color: var(--fg-muted);
}
.pricing-model strong { color: var(--fg); }

/* ── Closing ── */
.closing {
  padding: 120px 24px;
  background: 
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(232,149,10,0.05) 0%, transparent 70%),
    var(--bg);
  border-top: 1px solid var(--border);
}
.closing-inner { max-width: var(--max-w); margin: 0 auto; }
.closing-content { max-width: 680px; }
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 24px;
}
.closing-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--fg-muted);
  margin-bottom: 32px;
}
.closing-cta {
  padding: 20px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}
.closing-cta-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--fg-muted);
}
.closing-cta-btns {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* ── Footer ── */
.footer {
  padding: 48px 24px;
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg);
  display: block;
  margin-bottom: 8px;
}
.footer-desc {
  font-size: 0.82rem;
  color: var(--fg-muted);
  max-width: 360px;
  line-height: 1.6;
}
.footer-meta p {
  font-size: 0.8rem;
  color: rgba(237,233,223,0.25);
}

/* ── Services Page ── */
.svcs-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 100px 24px 80px;
  overflow: hidden;
}
.svcs-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 70% 50%, rgba(232,149,10,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 80% 50% at 30% 20%, rgba(232,149,10,0.03) 0%, transparent 60%),
    linear-gradient(160deg, var(--bg) 0%, var(--bg-alt) 100%);
}
.svcs-shimmer {
  position: absolute;
  top: 0; right: 0;
  width: 600px; height: 600px;
  background: radial-gradient(ellipse at 80% 20%, rgba(232,149,10,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.svcs-hero-content {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}
.svcs-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: rgba(255,255,255,0.03);
}
.svcs-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--fg);
  margin-bottom: 28px;
  max-width: 680px;
}
.svcs-lede {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--fg-muted);
  max-width: 540px;
  margin-bottom: 40px;
}
.svcs-proof-row {
  display: flex;
  align-items: center;
  gap: 0;
}
.svcs-stat {
  display: flex;
  flex-direction: column;
  padding: 0 28px;
}
.svcs-stat:first-child { padding-left: 0; }

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

/* Offer Grid */
.svcs-offer {
  padding: 100px 24px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.svcs-offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.svcs-offer-card {
  background: var(--bg);
  padding: 36px 32px;
  transition: background 0.2s ease;
}
.svcs-offer-card:hover { background: var(--bg-alt); }

/* Services Pricing (standalone, not section) */
.svcs-pricing {
  padding: 100px 24px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.svcs-pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}
.svcs-pricing-card {
  padding: 40px 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}
.svcs-pricing-card--featured {
  border-color: rgba(232,149,10,0.35);
  background: linear-gradient(160deg, rgba(232,149,10,0.06) 0%, var(--surface) 60%);
}
.svcs-pricing-note {
  padding: 20px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  text-align: center;
}
.svcs-pricing-note p {
  font-size: 0.9rem;
  color: var(--fg-muted);
}
.svcs-pricing-note strong { color: var(--fg); }

/* Proof Grid */
.svcs-proof {
  padding: 100px 24px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.svcs-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.svcs-proof-grid .proof-card {
  background: var(--surface);
  padding: 40px 32px;
}

/* CTA Form Section */
.svcs-cta-section {
  padding: 100px 24px;
  background:
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(232,149,10,0.06) 0%, transparent 70%),
    var(--bg-alt);
  border-top: 1px solid var(--border);
}
.svcs-cta-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.svcs-cta-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.2;
  margin-bottom: 16px;
}
.svcs-cta-body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}
.svcs-form-wrapper {
  text-align: left;
}
.svcs-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.svcs-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.svcs-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.svcs-form-group--full { grid-column: 1 / -1; }
.svcs-form-group label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--fg-muted);
  letter-spacing: 0.03em;
}
.svcs-form-group input,
.svcs-form-group select,
.svcs-form-group textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 10px 14px;
  transition: border-color 0.2s ease;
  outline: none;
  width: 100%;
}
.svcs-form-group input::placeholder,
.svcs-form-group textarea::placeholder {
  color: rgba(237,233,223,0.3);
}
.svcs-form-group input:focus,
.svcs-form-group select:focus,
.svcs-form-group textarea:focus {
  border-color: rgba(232,149,10,0.4);
}
.svcs-form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}
.svcs-submit-btn {
  background: var(--accent);
  color: var(--bg);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 28px;
  cursor: pointer;
  width: 100%;
  margin-top: 4px;
  transition: opacity 0.2s ease, transform 0.1s ease;
  letter-spacing: 0.02em;
}
.svcs-submit-btn:hover { opacity: 0.88; }
.svcs-submit-btn:active { transform: scale(0.99); }
.svcs-form-footnote {
  font-size: 0.78rem;
  color: rgba(237,233,223,0.4);
  text-align: center;
  margin-top: -4px;
}

/* Success state */
.svcs-success {
  padding: 32px 28px;
  border: 1px solid rgba(232,149,10,0.25);
  border-radius: var(--radius);
  background: var(--accent-dim);
  text-align: center;
}
.svcs-success-icon {
  color: var(--accent);
  margin-bottom: 12px;
  display: flex;
  justify-content: center;
}
.svcs-success p {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.6;
}
.svcs-success strong { color: var(--fg); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .proof-grid,
  .features-grid { grid-template-columns: 1fr 1fr; }
  .trades-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .stat-divider { display: none; }
}
@media (max-width: 640px) {
  .proof-grid,
  .features-grid { grid-template-columns: 1fr; }
  .trades-grid { grid-template-columns: 1fr 1fr; }
  .step { grid-template-columns: 60px 1fr; gap: 16px; }
  .step-num { font-size: 2rem; }
  .hero-headline { font-size: 2.4rem; }
  .nav-tagline { display: none; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 400px) {
  .trades-grid { grid-template-columns: 1fr; }
}

/* ── A/B Dashboard ── */
.ab-hero {
  position: relative;
  padding: 140px 24px 60px;
  overflow: hidden;
}
.ab-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(232,149,10,0.05) 0%, transparent 70%),
    linear-gradient(160deg, var(--bg) 0%, var(--bg-alt) 100%);
  z-index: 0;
}
.ab-hero-content {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  z-index: 1;
}
.ab-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 16px;
  line-height: 1.15;
}
.ab-lede {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--fg-muted);
  max-width: 640px;
  margin-bottom: 32px;
}
.ab-meta {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.ab-meta-item {
  display: flex;
  flex-direction: column;
  padding: 0 28px;
}
.ab-meta-item:first-child { padding-left: 0; }
.ab-meta-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 4px;
}
.ab-meta-value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fg);
}
.ab-meta-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}
.ab-meta-source { line-height: 1; padding-top: 4px; }
.ab-meta-actions {
  margin-left: auto;
  padding-left: 28px;
}

.ab-results {
  padding: 40px 24px 100px;
  background: var(--bg);
}
.ab-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.variant-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.variant-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.variant-card[data-top="true"] {
  border-left: 4px solid var(--accent);
  background: linear-gradient(160deg, rgba(232,149,10,0.05) 0%, var(--surface) 75%);
}
.variant-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.variant-letter {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}
.variant-badge {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(232,149,10,0.25);
  padding: 3px 10px;
  border-radius: 100px;
}
.variant-subject {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--fg);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.variant-stats {
  display: flex;
  align-items: stretch;
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.variant-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 12px;
}
.variant-stat:first-child { padding-left: 0; }
.variant-rate-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 4px;
}
.variant-rate {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 4px;
}
.variant-rate--best {
  color: var(--accent);
}
.variant-count {
  font-size: 0.72rem;
  color: var(--fg-muted);
}
.variant-stat-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
}
.variant-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--fg-muted);
}
.variant-sent { font-size: 0.78rem; }

.source-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  background: rgba(255,255,255,0.04);
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid var(--border);
}
.source-badge--instantly {
  color: var(--accent);
  background: var(--accent-dim);
  border-color: rgba(232,149,10,0.25);
}
.source-badge--warn {
  color: #f3b27a;
  background: rgba(232,149,10,0.08);
  border-color: rgba(232,149,10,0.2);
}

.ab-empty {
  padding: 64px 40px;
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.ab-empty-headline {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 14px;
}
.ab-empty-body {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--fg-muted);
  margin-bottom: 16px;
}
.ab-empty-body code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.85rem;
  background: rgba(255,255,255,0.05);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--accent);
}
.ab-empty-foot {
  font-size: 0.8rem;
  color: rgba(237,233,223,0.4);
}

.ab-funnel-banner {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 16px 22px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ab-funnel-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--fg-muted);
  line-height: 1.5;
}
.ab-funnel-line strong {
  color: var(--fg);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
}
.ab-funnel-meta {
  font-size: 0.75rem;
  color: rgba(237,233,223,0.55);
  margin-left: auto;
}

@media (max-width: 640px) {
  .ab-meta { gap: 16px; }
  .ab-meta-item { padding: 0 12px; }
  .ab-meta-divider { display: none; }
  .ab-meta-actions { padding-left: 0; margin-left: 0; }
  .variant-stats { flex-wrap: wrap; }
  .variant-stat { flex: 0 0 50%; padding: 8px 12px; }
  .variant-stat-divider { display: none; }
  .variant-footer { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ── Booked Jobs Dashboard ── */
.bj-hero {
  position: relative;
  padding: 140px 24px 60px;
  overflow: hidden;
}
.bj-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(232,149,10,0.05) 0%, transparent 70%),
    linear-gradient(160deg, var(--bg) 0%, var(--bg-alt) 100%);
  z-index: 0;
}
.bj-hero-content {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  z-index: 1;
}
.bj-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 16px;
  line-height: 1.15;
}
.bj-lede {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--fg-muted);
  max-width: 640px;
  margin-bottom: 32px;
}
.bj-meta {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.bj-meta-item {
  display: flex;
  flex-direction: column;
  padding: 0 28px;
}
.bj-meta-item:first-child { padding-left: 0; }
.bj-meta-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 4px;
}
.bj-meta-value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fg);
}
.bj-meta-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}
.bj-meta-actions {
  margin-left: auto;
  padding-left: 28px;
}

.bj-results {
  padding: 40px 24px 100px;
  background: var(--bg);
}
.bj-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.bj-table-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow-x: auto;
}
.bj-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
  font-size: 0.92rem;
}
.bj-table thead th {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  padding: 18px 22px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}
.bj-table tbody td {
  padding: 18px 22px;
  color: var(--fg);
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.bj-table tbody tr:last-child td { border-bottom: none; }
.bj-table tbody tr {
  transition: background 0.15s ease;
}
.bj-table tbody tr:hover {
  background: rgba(232,149,10,0.04);
}
.bj-status {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  color: var(--fg-muted);
}
.bj-status--confirmed {
  color: #10b981;
  background: rgba(16,185,129,0.08);
  border-color: rgba(16,185,129,0.25);
}
.bj-status--cancelled,
.bj-status--canceled {
  color: #f3b27a;
  background: rgba(232,149,10,0.08);
  border-color: rgba(232,149,10,0.2);
}
.bj-status--completed,
.bj-status--done {
  color: var(--accent);
  background: var(--accent-dim);
  border-color: rgba(232,149,10,0.25);
}

.bj-btn--complete {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(232,149,10,0.3);
  background: var(--accent-dim);
  color: var(--accent);
  cursor: pointer;
  transition: background 0.15s ease;
}
.bj-btn--complete:hover:not(:disabled) {
  background: rgba(232,149,10,0.18);
}
.bj-btn--complete:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.bj-empty {
  padding: 64px 40px;
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.bj-empty-headline {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 14px;
}
.bj-empty-body {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--fg-muted);
  margin-bottom: 16px;
}
.bj-empty-body code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.85rem;
  background: rgba(255,255,255,0.05);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--accent);
}
.bj-empty-foot {
  font-size: 0.8rem;
  color: rgba(237,233,223,0.4);
}

.bj-section {
  display: block;
  margin-top: 32px;
}
.bj-section:first-child { margin-top: 0; }
.bj-section-label {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  padding: 0 4px;
}
.bj-section-label-count {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-left: 6px;
}
.bj-hour-row td {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  padding: 10px 22px;
  border-bottom: 1px dashed var(--border);
  background: rgba(255,255,255,0.02);
}
.bj-table--past { opacity: 0.65; }
.bj-table--past tbody tr { border-bottom-color: rgba(255,255,255,0.04); }
.bj-table--past:hover,
.bj-table--past tbody tr:hover { opacity: 1; }

.bj-today-list { list-style: none; padding: 0; margin: 12px 0 0; }
.bj-today-list li + li { border-top: 1px solid rgba(255,255,255,0.08); }
.bj-today-list li { padding: 10px 0; }

@media (max-width: 900px) {
  .bj-table thead th,
  .bj-table tbody td { padding: 14px 16px; }
}
@media (max-width: 640px) {
  .bj-meta { gap: 16px; }
  .bj-meta-item { padding: 0 12px; }
  .bj-meta-divider { display: none; }
  .bj-meta-actions { padding-left: 0; margin-left: 0; }
  .bj-table thead th,
  .bj-table tbody td { padding: 12px 10px; font-size: 0.85rem; }
}

/* ── Manage Availability ── */
/* Slot-specific status colors + per-row toggle / remove buttons. The
   hero / table / empty-state chrome reuses the bj- classes above so this
   page picks up the established layout for free. */
.av-status--open {
  color: #10b981;
  background: rgba(16,185,129,0.08);
  border-color: rgba(16,185,129,0.25);
}
.av-status--blocked {
  color: #f3b27a;
  background: rgba(232,149,10,0.08);
  border-color: rgba(232,149,10,0.2);
}
.av-status--booked {
  color: var(--accent);
  background: var(--accent-dim);
  border-color: rgba(232,149,10,0.25);
}

.av-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(232,149,10,0.3);
  background: var(--accent-dim);
  color: var(--accent);
  cursor: pointer;
  transition: background 0.15s ease;
  margin-right: 8px;
}
.av-btn:last-child { margin-right: 0; }
.av-btn:hover:not(:disabled) {
  background: rgba(232,149,10,0.18);
}
.av-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.av-btn--remove {
  border-color: rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: var(--fg-muted);
}
.av-btn--remove:hover:not(:disabled) {
  background: rgba(255,255,255,0.08);
  color: var(--fg);
}
