:root {
  --bg: #0a0a0a;
  --bg-2: #111111;
  --bg-3: #181818;
  --fg: #f5f5f5;
  --fg-muted: #888888;
  --accent: #f59e0b;
  --accent-dim: rgba(245, 158, 11, 0.12);
  --accent-glow: rgba(245, 158, 11, 0.08);
  --border: rgba(255,255,255,0.08);
  --radius: 12px;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { font-size: 16px; }

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

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 2rem;
  border-bottom: 1px solid var(--border);
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(20px);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  color: var(--accent);
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
}
.nav-left { display: flex; align-items: center; gap: 0.75rem; }
.nav-right { display: flex; align-items: center; }
.nav-cta {
  background: var(--accent);
  color: #000;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.85; }

/* ===== SECTIONS ===== */
section { padding: 5rem 2rem; }

.section-header { max-width: 700px; margin: 0 auto 4rem; text-align: center; }
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(245,158,11,0.2);
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.04em;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 520px;
  margin: 0 auto;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 60px;
  position: relative;
}
.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-bottom: 1.5rem;
  letter-spacing: 0.04em;
}
.eyebrow-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(4rem, 7vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: 1.1rem;
  color: #aaa;
  max-width: 420px;
  line-height: 1.65;
  margin-bottom: 2.5rem;
}

.hero-proof {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.proof-item {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}
.proof-item:first-child { border-top: 1px solid var(--border); }
.proof-number {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--accent);
  letter-spacing: 0.06em;
  min-width: 130px;
}
.proof-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
}
.proof-divider { display: none; }

/* ===== PHONE VISUAL ===== */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone-wrapper {
  position: relative;
  z-index: 2;
}
.phone-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle at center, rgba(245,158,11,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.phone-frame {
  position: relative;
  width: 280px;
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 36px;
  padding: 12px;
  box-shadow: 0 0 60px rgba(245,158,11,0.15), 0 30px 60px rgba(0,0,0,0.8);
}
.phone-notch {
  width: 80px; height: 24px;
  background: #0d0d0d;
  border-radius: 12px;
  margin: 0 auto 8px;
}
.phone-screen {
  background: #0a0a0a;
  border-radius: 24px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.phone-homebar {
  width: 100px; height: 4px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
  margin: 8px auto 0;
}

/* Notifications */
.notif {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid;
  animation: fadeSlideIn 0.5s ease both;
}
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.notif-booked { background: rgba(34,197,94,0.1); border-color: rgba(34,197,94,0.25); }
.notif-sms { background: rgba(245,158,11,0.1); border-color: rgba(245,158,11,0.25); animation-delay: 0.3s; }
.notif-review { background: rgba(168,85,247,0.1); border-color: rgba(168,85,247,0.2); animation-delay: 0.6s; }
.notif-followup { background: rgba(59,130,246,0.1); border-color: rgba(59,130,246,0.2); animation-delay: 0.9s; }

.notif-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.notif-booked .notif-icon { background: rgba(34,197,94,0.2); color: #22c55e; }
.notif-sms .notif-icon { background: rgba(245,158,11,0.2); color: #f59e0b; }
.notif-review .notif-icon { background: rgba(168,85,247,0.2); color: #a855f7; }
.notif-followup .notif-icon { background: rgba(59,130,246,0.2); color: #3b82f6; }

.notif-body { flex: 1; min-width: 0; }
.notif-title { font-size: 0.72rem; font-weight: 600; color: #eee; margin-bottom: 2px; }
.notif-meta { font-size: 0.65rem; color: #777; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.notif-time { font-size: 0.62rem; color: #555; flex-shrink: 0; }

/* BG NODES */
.bg-nodes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.node-lines { position: absolute; inset: 0; width: 100%; height: 100%; }
.node {
  position: absolute;
  border-radius: 50%;
  background: var(--accent);
  animation: nodeFloat 4s ease-in-out infinite;
}
.node-1 { width: 6px; height: 6px; top: 10%; left: 5%; animation-delay: 0s; }
.node-2 { width: 4px; height: 4px; top: 25%; right: 10%; animation-delay: 1s; }
.node-3 { width: 5px; height: 5px; bottom: 20%; left: 15%; animation-delay: 2s; }
@keyframes nodeFloat {
  0%, 100% { opacity: 0.4; transform: translateY(0); }
  50% { opacity: 0.15; transform: translateY(-10px); }
}

/* ===== HOW IT WORKS ===== */
.howitworks { background: var(--bg-2); }
.steps-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
}
.step { text-align: center; }
.step-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(245,158,11,0.2);
  display: inline-block;
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.step-icon {
  width: 56px; height: 56px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  color: var(--accent);
}
.step-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  color: var(--fg);
  margin-bottom: 0.5rem;
}
.step-body { font-size: 0.875rem; color: var(--fg-muted); line-height: 1.6; }
.step-arrow { color: var(--fg-muted); opacity: 0.4; }

/* ===== FEATURES ===== */
.features { background: var(--bg); }
.features-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.feature-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.feature-card:hover {
  border-color: rgba(245,158,11,0.3);
  box-shadow: 0 0 30px rgba(245,158,11,0.04);
}
.feature-primary {
  grid-column: span 3;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: start;
}
.feature-icon {
  width: 48px; height: 48px;
  background: var(--accent-dim);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.feature-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: var(--fg);
  margin-bottom: 0.5rem;
}
.feature-body { font-size: 0.875rem; color: var(--fg-muted); line-height: 1.6; }

/* ===== WHO IT'S FOR ===== */
.whoitsfor { background: var(--bg-2); }
.industries-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.industry-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color 0.3s;
}
.industry-card:hover { border-color: rgba(245,158,11,0.3); }
.industry-icon {
  color: var(--accent);
  margin-bottom: 1rem;
}
.industry-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  color: var(--fg);
  margin-bottom: 0.5rem;
}
.industry-desc { font-size: 0.875rem; color: var(--fg-muted); line-height: 1.6; }

/* ===== RESULTS ===== */
.results {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.results-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.results-label { margin-bottom: 1.5rem; }
.results-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  letter-spacing: 0.04em;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.results-accent { color: var(--accent); }
.results-body { font-size: 1rem; color: var(--fg-muted); max-width: 600px; margin: 0 auto 3rem; line-height: 1.7; }
.results-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.result-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 3rem;
}
.result-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--accent);
  letter-spacing: 0.04em;
  margin-bottom: 0.25rem;
}
.result-desc { font-size: 0.8rem; color: var(--fg-muted); max-width: 140px; text-align: center; }
.result-divider { width: 1px; height: 60px; background: var(--border); }

/* ===== PRICING ===== */
.pricing { background: var(--bg-2); }
.pricing-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.pricing-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}
.pricing-card-featured {
  border-color: rgba(245,158,11,0.4);
  background: linear-gradient(180deg, rgba(245,158,11,0.04) 0%, transparent 100%);
}
.pricing-tier {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.pricing-price { margin-bottom: 1rem; display: flex; align-items: baseline; gap: 0.4rem; flex-wrap: wrap; }
.price-start { font-size: 0.8rem; color: var(--fg-muted); }
.price-amount { font-family: var(--font-display); font-size: 2.5rem; color: var(--fg); letter-spacing: 0.04em; }
.price-period { font-size: 0.85rem; color: var(--fg-muted); }
.pricing-desc { font-size: 0.875rem; color: var(--fg-muted); margin-bottom: 1.5rem; line-height: 1.6; }
.pricing-includes { list-style: none; }
.pricing-includes li {
  font-size: 0.85rem;
  color: #aaa;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pricing-includes li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ===== CTA ===== */
.cta {
  background: var(--bg);
  padding: 5rem 2rem;
}
.cta-inner { max-width: 600px; margin: 0 auto; text-align: center; }
.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: 0.03em;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 1rem;
}
.cta-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  margin-bottom: 3rem;
  line-height: 1.6;
}
.cta-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 420px;
  margin: 0 auto 2rem;
}
.cta-form-row {
  display: flex;
  gap: 0.75rem;
}
.cta-input {
  flex: 1;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.875rem 1rem;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s;
  outline: none;
}
.cta-input::placeholder { color: #555; }
.cta-input:focus { border-color: rgba(245,158,11,0.5); }
.cta-select {
  flex: 1;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.875rem 1rem;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.5rem;
}
.cta-select option { background: var(--bg-2); color: var(--fg); }
.cta-btn {
  background: var(--accent);
  color: #000;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.875rem 2rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 0.2s;
  font-family: var(--font-body);
}
.cta-btn:hover { opacity: 0.85; }
.cta-trust {
  font-size: 0.8rem;
  color: var(--fg-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
.cta-trust svg { color: var(--accent); flex-shrink: 0; }
.cta-success {
  display: none;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: 8px;
  padding: 1.25rem;
  text-align: center;
}
.cta-success.show { display: block; }
.cta-success-title { font-weight: 600; color: #22c55e; margin-bottom: 0.5rem; }
.cta-success-body { font-size: 0.9rem; color: #aaa; }
.cta-error {
  display: none;
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.3);
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  font-size: 0.85rem;
  color: #f87171;
}
.cta-error.show { display: block; }

/* ===== CLOSING ===== */
.closing {
  background: var(--bg);
  padding: 6rem 2rem;
}
.closing-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.closing-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent-dim);
  border: 1px solid rgba(245,158,11,0.2);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  letter-spacing: 0.04em;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.closing-body { font-size: 1rem; color: var(--fg-muted); max-width: 560px; margin: 0 auto; line-height: 1.7; }

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 2.5rem 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.3rem;
  display: block;
}
.footer-tagline { font-size: 0.8rem; color: var(--fg-muted); }
.footer-meta p { font-size: 0.75rem; color: #444; }

/* ===== MOBILE ===== */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { order: -1; }
  .hero-headline { font-size: clamp(3rem, 12vw, 4.5rem); }
  .hero-sub { font-size: 1rem; }
  .steps-grid { grid-template-columns: 1fr; gap: 0.5rem; }
  .step-arrow { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-primary { grid-column: span 1; grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .results-stats { flex-direction: column; gap: 1.5rem; }
  .result-divider { display: none; }
  .footer-inner { flex-direction: column; gap: 1rem; text-align: center; }
  section { padding: 4rem 1.5rem; }
  .phone-frame { width: 220px; }
  .proof-item { flex-direction: column; gap: 0.25rem; }
}

@media (max-width: 480px) {
  .phone-frame { width: 180px; padding: 8px; }
  .phone-screen { padding: 8px; gap: 6px; }
  .notif { padding: 7px; gap: 7px; }
  .notif-icon { width: 26px; height: 26px; }
}