:root {
  --bg-deep: #0a0a0f;
  --bg-card: #111118;
  --bg-surface: #1a1a24;
  --fg: #e8e8ed;
  --fg-muted: #8b8b9e;
  --accent: #00e5a0;
  --accent-dim: rgba(0, 229, 160, 0.12);
  --accent-glow: rgba(0, 229, 160, 0.25);
  --red: #ff4d4d;
  --yellow: #ffc53d;
  --radius: 12px;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

body {
  background: var(--bg-deep);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 24px;
  position: relative;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(0,229,160,0.08) 0%, transparent 70%),
    var(--bg-deep);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--accent-dim);
  border: 1px solid rgba(0,229,160,0.2);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.02em;
  margin-bottom: 32px;
}

.hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 800px;
  margin-bottom: 24px;
}

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

.hero .lede {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.6;
}

.hero-stat {
  margin-top: 56px;
  display: flex;
  align-items: center;
  gap: 48px;
}

.hero-stat .stat {
  text-align: center;
}

.hero-stat .stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

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

.hero-stat .divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.1);
}

/* ---- PROBLEM ---- */
.problem {
  padding: 120px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

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

.problem-left h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.problem-left h2 .red {
  color: var(--red);
}

.problem-left p {
  color: var(--fg-muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

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

.loss-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  transition: border-color 0.2s;
}

.loss-item:hover {
  border-color: rgba(255,77,77,0.3);
}

.loss-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,77,77,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.loss-item .loss-text {
  font-size: 0.95rem;
  color: var(--fg);
}

.loss-item .loss-text strong {
  color: var(--red);
}

/* ---- SERVICES ---- */
.services {
  padding: 120px 24px;
  background:
    linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-card) 50%, var(--bg-deep) 100%);
}

.services-inner {
  max-width: 1100px;
  margin: 0 auto;
}

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

.services h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 56px;
  max-width: 600px;
}

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

.service-card {
  padding: 32px 28px;
  background: var(--bg-surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  transition: transform 0.2s, border-color 0.2s;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-glow);
}

.service-card .card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ---- INDUSTRIES ---- */
.industries {
  padding: 120px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.industries h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.industries .sub {
  color: var(--fg-muted);
  font-size: 1.1rem;
  margin-bottom: 48px;
  max-width: 550px;
}

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

.industry-tag {
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  transition: border-color 0.2s, background 0.2s;
}

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

.industry-tag .tag-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

/* ---- CLOSING ---- */
.closing {
  padding: 120px 24px;
  text-align: center;
  position: relative;
  background:
    radial-gradient(ellipse 50% 60% at 50% 100%, rgba(0,229,160,0.06) 0%, transparent 70%),
    var(--bg-deep);
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  max-width: 700px;
  margin: 0 auto 20px;
}

.closing h2 .highlight {
  color: var(--accent);
}

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

/* ---- FOOTER ---- */
footer {
  padding: 40px 24px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.06);
}

footer p {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--fg-muted);
}

footer .brand {
  color: var(--accent);
  font-weight: 600;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .industries-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-stat {
    flex-direction: column;
    gap: 24px;
  }
  .hero-stat .divider {
    width: 48px;
    height: 1px;
  }
}

@media (max-width: 480px) {
  .industries-grid {
    grid-template-columns: 1fr;
  }
}

/* ---- NAV ---- */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s;
}

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

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.logo-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-glow);
}

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

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

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  background: var(--accent);
  color: #0a0a0f;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
  flex-shrink: 0;
}

.nav-cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

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

.nav-mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.nav-mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(10,10,15,0.97);
}

.nav-mobile-menu a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 1rem;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-mobile-menu .mobile-cta {
  color: var(--accent);
  font-weight: 600;
  border: none;
  margin-top: 8px;
}

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

/* Push page down so content isn't under fixed nav */
body { padding-top: 64px; }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  background: var(--accent);
  color: #0a0a0f;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  opacity: 0.92;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,229,160,0.25);
}

.btn-primary.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 14px 24px;
  color: var(--fg-muted);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.1);
  transition: color 0.2s, border-color 0.2s;
}

.btn-ghost:hover {
  color: var(--fg);
  border-color: rgba(255,255,255,0.2);
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
  margin-bottom: 0;
  flex-wrap: wrap;
  justify-content: center;
}

/* ---- DEMO SECTION ---- */
.demo {
  padding: 120px 24px;
  position: relative;
  background:
    linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-card) 50%, var(--bg-deep) 100%);
}

.demo-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.demo h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.demo h2 .highlight { color: var(--accent); }

.demo-sub {
  color: var(--fg-muted);
  font-size: 1.1rem;
  margin-bottom: 56px;
  max-width: 560px;
}

.demo-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Input panel */
.demo-input-panel {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.demo-scenario {
  padding: 20px 24px;
  background: var(--bg-surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  border-left: 3px solid var(--yellow);
}

.scenario-badge {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.demo-scenario p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

.demo-form label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.input-row {
  display: flex;
  gap: 10px;
}

.demo-form input[type="tel"] {
  flex: 1;
  padding: 13px 16px;
  background: var(--bg-surface);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  color: var(--fg);
  font-family: var(--font-display);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
}

.demo-form input[type="tel"]::placeholder { color: var(--fg-muted); }

.demo-form input[type="tel"]:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}

.demo-btn {
  padding: 13px 20px;
  background: var(--accent);
  color: #0a0a0f;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.2s, transform 0.15s;
  min-width: 140px;
  justify-content: center;
}

.demo-btn:hover { opacity: 0.9; transform: translateY(-1px); }
.demo-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.demo-disclaimer {
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-top: 10px;
  font-style: italic;
}

/* Spinner */
.spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(10,10,15,0.3);
  border-top-color: #0a0a0f;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: inline-block;
}

@keyframes spin { to { transform: rotate(360deg); } }

.demo-stats {
  display: flex;
  gap: 32px;
}

.demo-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.demo-stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.demo-stat-label {
  font-size: 0.82rem;
  color: var(--fg-muted);
}

/* Phone mockup */
.demo-phone-panel {
  display: flex;
  justify-content: center;
}

.phone-frame {
  width: 280px;
  background: #1c1c28;
  border-radius: 36px;
  padding: 12px;
  border: 2px solid rgba(255,255,255,0.1);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.05) inset,
    0 24px 64px rgba(0,0,0,0.5),
    0 0 40px rgba(0,229,160,0.05);
  position: relative;
}

.phone-notch {
  width: 80px;
  height: 6px;
  background: rgba(255,255,255,0.12);
  border-radius: 3px;
  margin: 0 auto 12px;
}

.phone-screen {
  background: #0a0a12;
  border-radius: 28px;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  flex-direction: column;
}

.phone-header {
  padding: 16px;
  background: #111120;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.phone-contact {
  display: flex;
  align-items: center;
  gap: 10px;
}

.phone-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid rgba(0,229,160,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
}

.phone-name {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fg);
}

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

.phone-messages {
  flex: 1;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 260px;
}

.message-prompt {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  color: var(--fg-muted);
  font-size: 0.82rem;
  gap: 8px;
  opacity: 0.7;
}

.prompt-icon { font-size: 1.5rem; }

/* Individual messages */
.msg {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 18px;
  font-size: 0.82rem;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(8px);
  animation: fadeUp 0.4s ease forwards;
}

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

.msg.incoming {
  background: #1e1e2e;
  color: var(--fg-muted);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.msg.outgoing {
  background: var(--accent);
  color: #0a0a0f;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  font-weight: 500;
}

.msg-time {
  font-size: 0.68rem;
  color: var(--fg-muted);
  opacity: 0.6;
  margin-top: 2px;
  opacity: 0;
  animation: fadeUp 0.4s ease 0.2s forwards;
}

.msg-time.left { text-align: left; }
.msg-time.right { text-align: right; }

.typing-indicator {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 12px 14px;
  background: #1e1e2e;
  border-radius: 18px;
  border-bottom-left-radius: 4px;
  width: fit-content;
  opacity: 0;
  animation: fadeUp 0.3s ease forwards;
}

.typing-dot {
  width: 6px;
  height: 6px;
  background: var(--fg-muted);
  border-radius: 50%;
  animation: typingBounce 1.2s ease-in-out infinite;
}

.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
  0%, 80%, 100% { transform: translateY(0); opacity: 0.4; }
  40% { transform: translateY(-4px); opacity: 1; }
}

.demo-success {
  padding: 12px 16px;
  background: var(--accent-dim);
  border: 1px solid rgba(0,229,160,0.3);
  border-radius: 10px;
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 500;
  text-align: center;
}

/* ---- PRICING ---- */
.pricing {
  padding: 120px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.pricing h2 .highlight { color: var(--accent); }

.pricing-sub {
  color: var(--fg-muted);
  font-size: 1.1rem;
  margin-bottom: 48px;
  max-width: 560px;
}

/* ROI Calculator */
.roi-calc {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 56px;
}

.calc-header {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 24px;
}

.calc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.calc-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--fg-muted);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.calc-field input {
  width: 100%;
  padding: 11px 14px;
  background: var(--bg-surface);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: var(--fg);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  outline: none;
  transition: border-color 0.2s;
}

.calc-field input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}

.calc-result {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}

.total-row {
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

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

.result-value {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
}

.result-value.red { color: var(--red); }
.result-value.green { color: var(--accent); }
.result-value.accent { color: var(--accent); font-size: 1.4rem; }

/* Plan Cards */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.plan-card {
  padding: 32px 28px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.plan-card.featured {
  background: var(--bg-surface);
  border-color: var(--accent-glow);
  box-shadow: 0 0 40px rgba(0,229,160,0.08);
  transform: scale(1.02);
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 14px;
  background: var(--accent);
  color: #0a0a0f;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 100px;
  white-space: nowrap;
}

.plan-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.plan-price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
}

.plan-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--fg-muted);
}

.plan-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.plan-features li {
  font-size: 0.88rem;
  color: var(--fg-muted);
}

.plan-features li::first-letter { color: var(--accent); }

.plan-cta {
  display: block;
  text-align: center;
  padding: 12px 20px;
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
  margin-top: auto;
}

.plan-cta.primary {
  background: var(--accent);
  color: #0a0a0f;
}

.plan-cta.primary:hover { opacity: 0.9; transform: translateY(-1px); }

.plan-cta.outline {
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--fg);
}

.plan-cta.outline:hover {
  border-color: rgba(255,255,255,0.3);
  color: var(--fg);
}

.pricing-guarantee {
  text-align: center;
  font-size: 0.88rem;
  color: var(--fg-muted);
}

/* ---- CLOSING UPDATES ---- */
.closing-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin-top: 36px;
  flex-wrap: wrap;
}

.closing-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
  margin-top: 24px;
  flex-wrap: wrap;
}

.closing-trust span {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

/* ---- SERVICES SECTION: add anchor ---- */
.services { scroll-margin-top: 80px; }
.industries { scroll-margin-top: 80px; }
.demo { scroll-margin-top: 80px; }
.pricing { scroll-margin-top: 80px; }

/* ---- RESPONSIVE UPDATES ---- */
@media (max-width: 900px) {
  .demo-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .demo-phone-panel {
    order: -1;
  }
  .plan-grid {
    grid-template-columns: 1fr;
  }
  .plan-card.featured {
    transform: none;
  }
  .calc-grid {
    grid-template-columns: 1fr;
  }
  .nav-links, .nav-cta {
    display: none;
  }
  .nav-mobile-toggle {
    display: flex;
  }
}

@media (max-width: 768px) {
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .btn-primary, .btn-ghost {
    justify-content: center;
  }
  .closing-ctas {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
}