:root {
  --bg: #0a0a0f;
  --bg-elevated: #12121a;
  --bg-card: #1a1a26;
  --fg: #e8e8ed;
  --fg-muted: #8a8a9a;
  --accent: #6c5ce7;
  --accent-light: #a29bfe;
  --accent-glow: rgba(108, 92, 231, 0.15);
  --green: #00d2a0;
  --green-glow: rgba(0, 210, 160, 0.12);
  --border: rgba(255, 255, 255, 0.06);
  --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);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
}

/* ====== HERO ====== */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, var(--accent-glow) 0%, transparent 70%),
    var(--bg);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(108, 92, 231, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--accent-glow);
  border: 1px solid rgba(108, 92, 231, 0.25);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 32px;
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero h1 .accent {
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.hero-clients {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.client-tag {
  padding: 8px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  transition: all 0.25s ease;
}

.client-tag:hover {
  border-color: rgba(108, 92, 231, 0.3);
  color: var(--fg);
  background: var(--accent-glow);
}

/* ====== PROBLEM ====== */
.problem {
  padding: 120px 24px;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

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

.problem-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.problem-text p {
  color: var(--fg-muted);
  margin-bottom: 16px;
}

.problem-highlight {
  color: var(--accent-light) !important;
  font-weight: 600;
  font-size: 1.1rem;
}

.problem-stats {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.stat {
  padding: 28px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.3s ease;
}

.stat:hover {
  border-color: rgba(108, 92, 231, 0.2);
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-light), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

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

/* ====== SERVICES ====== */
.services {
  padding: 120px 24px;
}

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

.services-inner > h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.services-sub {
  text-align: center;
  color: var(--fg-muted);
  max-width: 520px;
  margin: 0 auto 64px;
}

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

.service-card {
  padding: 36px 28px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: rgba(108, 92, 231, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(108, 92, 231, 0.08);
}

.service-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
  opacity: 0.7;
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

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

/* ====== HOW ====== */
.how {
  padding: 120px 24px;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.how-inner {
  max-width: 900px;
  margin: 0 auto;
}

.how-inner > h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  text-align: center;
  margin-bottom: 64px;
  letter-spacing: -0.02em;
}

.how-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.step {
  flex: 1;
  text-align: center;
  padding: 0 20px;
}

.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-light), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.step h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

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

.step-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--green));
  margin-top: 32px;
  opacity: 0.4;
  flex-shrink: 0;
}

/* ====== CLOSING ====== */
.closing {
  padding: 140px 24px;
  text-align: center;
  background:
    radial-gradient(ellipse 60% 50% at 50% 100%, var(--green-glow) 0%, transparent 70%),
    var(--bg);
}

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

.closing h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.closing p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.closing-location {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent-light);
  opacity: 0.7;
}

/* ====== FOOTER ====== */
.site-footer {
  padding: 48px 24px;
  border-top: 1px solid var(--border);
  text-align: center;
}

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

.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 6px;
}

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

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .how-steps {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .step-line {
    width: 2px;
    height: 40px;
    margin-top: 0;
  }

  .hero {
    min-height: auto;
    padding: 60px 20px 80px;
  }

  .hero-clients {
    gap: 8px;
  }

  .client-tag {
    font-size: 13px;
    padding: 6px 14px;
  }

  .problem, .services, .how, .closing {
    padding: 80px 20px;
  }
}
/* ====== NAV ====== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 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);
  transition: background 0.3s ease;
}

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

.nav-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--fg);
  text-decoration: none;
  flex-shrink: 0;
}

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

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

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

.nav-cta {
  padding: 9px 20px;
  background: var(--accent);
  color: #fff \!important;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  font-family: var(--font-display);
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity 0.2s, transform 0.2s;
}

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

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

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

.nav-mobile-menu {
  display: none;
  flex-direction: column;
  padding: 12px 24px 20px;
  gap: 16px;
  border-top: 1px solid var(--border);
}

.nav-mobile-menu a {
  font-size: 1rem;
  color: var(--fg-muted);
  text-decoration: none;
  font-weight: 500;
}

.nav-mobile-menu .nav-cta {
  text-align: center;
  margin-top: 4px;
}

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

/* Push hero down under fixed nav */
.hero { padding-top: 144px; }

/* ====== BUTTONS ====== */
.btn-primary, .btn-ghost {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  opacity: 0.88;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(108, 92, 231, 0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--fg-muted);
  border: 1px solid var(--border);
}

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

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* ====== SECTION LABELS ====== */
.section-label {
  display: inline-block;
  padding: 5px 14px;
  background: var(--accent-glow);
  border: 1px solid rgba(108, 92, 231, 0.2);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 20px;
}

/* ====== DEMOS ====== */
.demos {
  padding: 120px 24px;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.demos-inner > h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.demos-sub {
  color: var(--fg-muted);
  margin-bottom: 48px;
}

.demos-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.demo-tab {
  padding: 10px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--fg-muted);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.demo-tab:hover { color: var(--fg); border-color: rgba(255,255,255,0.12); }

.demo-tab.active {
  background: var(--accent-glow);
  border-color: rgba(108, 92, 231, 0.3);
  color: var(--accent-light);
}

.demo-pane {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.demo-pane.active { display: grid; }

.demo-badge {
  display: inline-block;
  padding: 5px 14px;
  background: var(--green-glow);
  border: 1px solid rgba(0, 210, 160, 0.2);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 16px;
}

.demo-context h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.demo-context p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.demo-stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.demo-stat {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--fg-muted);
}

.demo-stat span {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-light), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
}

/* Chat widget */
.demo-widget {
  display: flex;
  justify-content: center;
}

.chat-window {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  width: 100%;
  max-width: 360px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
}

.chat-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.chat-name {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
}

.chat-status {
  font-size: 0.78rem;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 5px;
}

.status-dot {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  display: inline-block;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.chat-messages {
  padding: 16px 16px 8px;
  min-height: 160px;
  max-height: 220px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.msg { display: flex; }
.msg.bot { justify-content: flex-start; }
.msg.user { justify-content: flex-end; }

.msg-bubble {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.88rem;
  line-height: 1.5;
}

.msg.bot .msg-bubble {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--fg);
  border-bottom-left-radius: 4px;
}

.msg.user .msg-bubble {
  background: var(--accent);
  color: #fff;
  border-bottom-right-radius: 4px;
}

.typing .msg-bubble::after {
  content: '●●●';
  font-size: 0.7rem;
  letter-spacing: 2px;
  animation: typing-dots 1s infinite;
  color: var(--fg-muted);
}

@keyframes typing-dots {
  0%, 60%, 100% { opacity: 0.3; }
  30% { opacity: 1; }
}

.chat-suggestions {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 16px 12px;
}

.suggestion {
  padding: 8px 14px;
  background: var(--bg-elevated);
  border: 1px solid rgba(108, 92, 231, 0.2);
  border-radius: 8px;
  color: var(--accent-light);
  font-size: 0.82rem;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s;
  font-family: var(--font-body);
}

.suggestion:hover {
  background: var(--accent-glow);
  border-color: rgba(108, 92, 231, 0.4);
}

.chat-input-row {
  display: flex;
  border-top: 1px solid var(--border);
}

.chat-input-row input {
  flex: 1;
  padding: 12px 16px;
  background: transparent;
  border: none;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.88rem;
  outline: none;
}

.chat-input-row input::placeholder { color: var(--fg-muted); }

.chat-input-row button {
  padding: 0 20px;
  background: var(--accent);
  color: #fff;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  transition: opacity 0.2s;
}

.chat-input-row button:hover { opacity: 0.85; }

/* Booking widget */
.booking-widget {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  width: 100%;
  max-width: 360px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.booking-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
}

.booking-service {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
}

.booking-price {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--green);
  font-weight: 600;
}

.booking-step { padding: 20px; }
.booking-step.hidden { display: none; }

.booking-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-bottom: 12px;
  font-weight: 500;
}

.cal-nav {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 10px;
  text-align: center;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
}

.cal-day-name {
  font-size: 0.7rem;
  color: var(--fg-muted);
  text-align: center;
  padding: 4px 0;
  font-weight: 600;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.15s;
}

.cal-day.past { color: var(--fg-muted); opacity: 0.4; }

.cal-day.selectable {
  cursor: pointer;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
}

.cal-day.selectable:hover {
  background: var(--accent-glow);
  border-color: rgba(108, 92, 231, 0.3);
  color: var(--accent-light);
}

.cal-day.selected {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.time-slots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.time-slot {
  padding: 10px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--fg);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
  font-family: var(--font-body);
}

.time-slot:hover:not(:disabled) {
  background: var(--accent-glow);
  border-color: rgba(108, 92, 231, 0.3);
  color: var(--accent-light);
}

.time-slot.booked {
  opacity: 0.35;
  cursor: not-allowed;
  text-decoration: line-through;
}

.booking-confirm {
  text-align: center;
  padding: 8px;
}

.confirm-icon {
  width: 48px;
  height: 48px;
  background: var(--green-glow);
  border: 1px solid rgba(0, 210, 160, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--green);
  margin: 0 auto 12px;
}

.confirm-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 8px;
}

.confirm-detail {
  font-size: 0.88rem;
  color: var(--fg-muted);
  margin-bottom: 8px;
}

.confirm-note {
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-bottom: 16px;
  font-style: italic;
}

.btn-reset {
  padding: 8px 18px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--fg-muted);
  font-size: 0.82rem;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.2s;
}

.btn-reset:hover { color: var(--fg); }

/* SMS demo */
.sms-demo {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  width: 100%;
  max-width: 360px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.phone-bar {
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
  padding: 12px 20px;
}

.phone-carrier {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
}

.sms-thread {
  padding: 20px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sms-contact {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--fg-muted);
  text-align: center;
  margin-bottom: 4px;
}

.sms-msg {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 14px;
  border-bottom-left-radius: 4px;
  padding: 10px 14px;
  font-size: 0.88rem;
  line-height: 1.5;
  max-width: 90%;
}

.sms-choices {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.sms-choice {
  padding: 11px 16px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s;
  display: block;
  cursor: pointer;
}

.sms-choice.positive {
  background: var(--accent-glow);
  border: 1px solid rgba(108, 92, 231, 0.3);
  color: var(--accent-light);
}

.sms-choice.positive:hover {
  background: var(--accent);
  color: #fff;
}

.sms-choice.neutral {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--fg-muted);
}

.sms-choice.neutral:hover { color: var(--fg); }

.sms-response {
  background: var(--green-glow);
  border: 1px solid rgba(0, 210, 160, 0.2);
  border-radius: 14px;
  padding: 10px 14px;
  font-size: 0.82rem;
  color: var(--green);
  margin-top: 4px;
}

.sms-response.hidden { display: none; }

.sms-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--fg-muted);
  padding: 10px 16px 14px;
  border-top: 1px solid var(--border);
  margin-top: 4px;
}

/* ====== PRICING ====== */
.pricing {
  padding: 120px 24px;
}

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

.pricing-inner > h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.pricing-sub {
  color: var(--fg-muted);
  margin-bottom: 64px;
  max-width: 480px;
}

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

.pricing-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 28px;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(108, 92, 231, 0.2);
}

.pricing-card.featured {
  background: var(--bg-card);
  border-color: rgba(108, 92, 231, 0.35);
  box-shadow: 0 0 40px rgba(108, 92, 231, 0.08);
}

.plan-badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--accent);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: #fff;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

.plan-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg-muted);
  margin-bottom: 12px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 6px;
  line-height: 1;
}

.price-currency {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fg-muted);
}

.price-amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.03em;
}

.price-period {
  font-size: 0.9rem;
  color: var(--fg-muted);
  margin-left: 4px;
}

.plan-tagline {
  font-size: 0.88rem;
  color: var(--fg-muted);
  margin-bottom: 28px;
  font-style: italic;
}

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

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

.plan-features li::first-letter {
  /* ✓ inherits green via content in HTML */
}

.plan-cta {
  display: block;
  padding: 14px 20px;
  text-align: center;
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid rgba(108, 92, 231, 0.3);
  color: var(--accent-light);
  transition: all 0.2s;
  margin-bottom: 20px;
}

.plan-cta:hover {
  background: var(--accent-glow);
  border-color: rgba(108, 92, 231, 0.5);
}

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

.plan-cta.primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(108, 92, 231, 0.3);
}

.plan-note {
  font-size: 0.78rem;
  color: var(--fg-muted);
  text-align: center;
  line-height: 1.4;
}

.pricing-guarantee {
  margin-top: 48px;
  padding: 24px 28px;
  background: var(--green-glow);
  border: 1px solid rgba(0, 210, 160, 0.15);
  border-radius: var(--radius);
  text-align: center;
  font-size: 0.95rem;
  color: var(--fg-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.guarantee-icon { font-size: 1.3rem; }

.pricing-guarantee strong { color: var(--green); }

/* ====== CONTACT ====== */
.contact {
  padding: 120px 24px;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
}

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

.contact-inner > h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.contact-sub {
  color: var(--fg-muted);
  margin-bottom: 56px;
  max-width: 560px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 80px;
  align-items: start;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.form-field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fg-muted);
  font-family: var(--font-display);
}

.form-field input,
.form-field textarea {
  padding: 12px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: rgba(108, 92, 231, 0.4);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--fg-muted);
  opacity: 0.6;
}

.btn-submit {
  width: 100%;
  padding: 15px 24px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: 16px;
}

.btn-submit:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(108, 92, 231, 0.3);
}

.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.form-success {
  padding: 14px 18px;
  background: var(--green-glow);
  border: 1px solid rgba(0, 210, 160, 0.2);
  border-radius: 10px;
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 500;
}

.form-error {
  padding: 14px 18px;
  background: rgba(231, 92, 92, 0.08);
  border: 1px solid rgba(231, 92, 92, 0.2);
  border-radius: 10px;
  color: #f87171;
  font-size: 0.9rem;
}

.hidden { display: none \!important; }

.contact-trust {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.trust-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.trust-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  width: 36px;
}

.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.trust-item p {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.5;
  margin: 0;
}

/* ====== RESPONSIVE (additions) ====== */
@media (max-width: 900px) {
  .demo-pane.active { grid-template-columns: 1fr; gap: 40px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .demos-tabs { gap: 6px; }
  .demo-tab { padding: 8px 14px; font-size: 0.82rem; }
}

/* ====== FOOTER ADDITIONS ====== */
.footer-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 16px 0;
}

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

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

.footer-copy {
  font-size: 0.8rem;
  color: var(--fg-muted);
  opacity: 0.6;
  margin-top: 8px;
}

.footer-copy a {
  color: var(--accent-light);
  text-decoration: none;
}
