@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Work+Sans:wght@400;500;600&display=swap');

:root {
  --bg: #0a1020;
  --panel: #111a2d;
  --panel-strong: #162036;
  --muted: #b8c7e2;
  --text: #f1f5ff;
  --accent: #c084fc;
  --accent-2: #8b5cf6;
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.3);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: radial-gradient(140% 120% at 20% 10%, rgba(168, 85, 247, 0.1), transparent),
    radial-gradient(120% 120% at 80% 0%, rgba(236, 72, 153, 0.1), transparent),
    radial-gradient(180% 140% at 50% 80%, rgba(109, 40, 217, 0.12), transparent),
    var(--bg);
  color: var(--text);
  font-family: 'Work Sans', 'Space Grotesk', 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

nav {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(14, 20, 38, 0.85);
  border-bottom: 1px solid var(--border);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.logo {
  font-family: 'Space Grotesk', 'Work Sans', sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: grid;
  place-items: center;
  color: #041016;
  font-weight: 700;
  font-size: 16px;
}

.nav-links {
  display: flex;
  gap: 22px;
  color: #d4e0ff;
  font-weight: 500;
  align-items: center;
  transition: opacity 0.2s ease;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-links svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.nav-toggle:hover {
  transform: translateY(-2px);
  border-color: rgba(192, 132, 252, 0.35);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-phone:hover {
  transform: translateY(-2px);
  border-color: rgba(192, 132, 252, 0.4);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

.nav-phone svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
}

.btn {
  border: 1px solid var(--border);
  padding: 10px 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  border-color: rgba(168, 85, 247, 0.35);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.22);
}

.btn.primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  border: none;
  color: #041016;
  box-shadow: 0 12px 32px rgba(168, 85, 247, 0.28);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.06);
}

.hero {
  padding: 64px 0 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: #d4e0ff;
  font-size: 14px;
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.06);
}

.hero h1 {
  font-size: clamp(36px, 5vw, 54px);
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}

.hero p {
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.checks {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 14px;
  color: var(--muted);
}

.check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-card {
  background: linear-gradient(145deg, rgba(20, 30, 50, 0.92), rgba(14, 22, 38, 0.94));
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 80% at 100% 0%, rgba(168, 85, 247, 0.14), transparent);
  pointer-events: none;
}

.chat-preview {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 14px;
  padding: 16px;
  border: 1px solid var(--border);
  display: grid;
  gap: 12px;
}
.message {
  padding: 12px 14px;
  border-radius: 12px;
  max-width: 90%;
  color: #0c1628;
  font-weight: 600;
}
.message.user {
  margin-left: auto;
  background: linear-gradient(120deg, #ecd9ff, #d8b4fe);
}

.message.bot {
  background: linear-gradient(120deg, #e5d4ff, #c4b5fd);
}

.message.meta {
  background: transparent;
  color: #f8fbff;
  padding: 0;
  font-size: 14px;
  font-weight: 500;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.stat {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: #e9f0ff;
  font-weight: 600;
}

.section {
  padding: 54px 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.section h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin: 0 0 10px;
}

.flow {
  display: inline-block;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  border: 1px solid var(--border);
}

.section p {
  color: var(--muted);
  max-width: 640px;
  margin: 0;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
  position: relative;
  text-align: center;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 20px;
  text-align: center;
}

.card p {
  margin: 0 0 10px;
}

.chip {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  color: #e9f0ff;
  background: rgba(255, 255, 255, 0.06);
  font-size: 13px;
  margin-top: 8px;
}

.icon-ring {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  color: var(--accent-2);
  margin: 0 auto 12px;
}

.icon-lg {
  width: 44px;
  height: 44px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.step {
  background: var(--panel-strong);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  position: relative;
  box-shadow: var(--shadow);
  text-align: center;
}

.step-number {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(168, 85, 247, 0.15);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-weight: 700;
  margin: 0 auto 12px;
}

.integrations, .channels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.tag {
  padding: 12px;
  border-radius: 12px;
  border: 1px dashed var(--border);
  text-align: center;
  color: #e9f0ff;
  background: rgba(255, 255, 255, 0.04);
  font-weight: 600;
}

.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.price-card {
  background: linear-gradient(160deg, rgba(18, 26, 43, 0.94), rgba(24, 34, 56, 0.95));
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 420px;
}

.price-card.featured {
  border-color: rgba(168, 85, 247, 0.35);
  box-shadow: 0 18px 50px rgba(139, 92, 246, 0.24);
}

.price {
  font-size: 28px;
  font-weight: 700;
}

.list {
  color: #d4e0ff;
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.price-card .list {
  flex: 1;
}

.price-card .btn {
  margin-top: auto;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.quote {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  display: grid;
  gap: 8px;
}

.faq {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--panel);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  text-align: left;
  padding: 14px 16px;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-answer {
  padding: 0 16px 0;
  color: var(--muted);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.45s ease-in-out, opacity 0.35s ease-in-out, padding 0.35s ease-in-out;
}

.faq-item.active .faq-answer {
  padding: 0 16px 14px;
  max-height: 520px;
  opacity: 1;
}

.contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.form {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  display: grid;
  gap: 12px;
  box-shadow: var(--shadow);
}

.input {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.map-embed {
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--panel);
}

.map-embed iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

.footer {
  border-top: 1px solid var(--border);
  padding: 22px 0 28px;
  color: var(--muted);
  font-size: 14px;
  background: #05070f;
}

.trusted {
  overflow: hidden;
  position: relative;
  margin-top: 16px;
}

.trusted-marquee {
  overflow: hidden;
}

.trusted-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marqueeRight 18s linear infinite;
  will-change: transform;
}

.trusted:hover .trusted-track {
  animation-play-state: paused;
}

.logo-tile {
  width: 150px;
  height: 90px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: radial-gradient(circle at 30% 30%, rgba(192, 132, 252, 0.35), transparent 55%),
    radial-gradient(circle at 70% 25%, rgba(139, 92, 246, 0.3), transparent 60%),
    rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  color: #f1e9ff;
  font-weight: 700;
  letter-spacing: 0.03em;
}

@keyframes marqueeRight {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

.highlighted {
  background: linear-gradient(140deg, rgba(168, 85, 247, 0.08), rgba(139, 92, 246, 0.08));
  border-radius: 14px;
  padding: 12px;
  border: 1px solid rgba(168, 85, 247, 0.25);
}

.section.alt {
  background: linear-gradient(120deg, rgba(18, 26, 43, 0.9), rgba(24, 34, 56, 0.9));
  border: 1px solid var(--border);
  border-radius: 18px;
  margin: 40px 0;
  padding: 48px 36px;
  box-shadow: var(--shadow);
}

@media (max-width: 720px) {
  .navbar {
    padding: 14px 0;
    position: relative;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--panel-strong);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 12px 14px;
    display: none;
    flex-direction: column;
    gap: 12px;
    box-shadow: var(--shadow);
    z-index: 15;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    padding: 10px 8px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
  }

  .nav-actions {
    gap: 8px;
  }

  .nav-phone {
    display: inline-flex;
    padding: 8px 12px;
    font-size: 14px;
    white-space: nowrap;
  }

  .hero {
    padding-top: 42px;
  }

  .section {
    padding: 36px 0;
  }

  .map-embed iframe {
    height: 280px;
  }
}
