:root {
  --bg: #0b0f1f;
  --bg-alt: #11162b;
  --card: rgba(18, 24, 48, 0.86);
  --card-strong: rgba(18, 24, 48, 0.95);
  --border: rgba(106, 139, 255, 0.18);
  --primary: #6a8bff;
  --accent: #a855f7;
  --text: #e8ecff;
  --muted: #aab4d4;
  --gradient: linear-gradient(120deg, #6a8bff, #a855f7, #4fd1ff);
  --shadow: 0 24px 60px rgba(7, 10, 20, 0.45);
}

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

body {
  font-family: "Manrope", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 96px 0;
  position: relative;
  z-index: 1;
}

.hidden-section {
  display: none;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(7, 11, 23, 0.8);
  border-bottom: 1px solid rgba(106, 139, 255, 0.1);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  object-fit: cover;
  padding: 0;
  background: transparent;
  border: none;
}

.brand-name {
  font-weight: 800;
  font-size: 18px;
}

.brand-tag {
  font-size: 12px;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 14px;
  color: var(--muted);
}

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

.nav-cta {
  display: flex;
  gap: 12px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 4px;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
  background: rgba(7, 11, 23, 0.95);
}

.hero {
  padding-top: 120px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 12px;
}

.hero-content h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin-bottom: 16px;
}

.hero-content p {
  color: var(--muted);
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.pill {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(106, 139, 255, 0.12);
  border: 1px solid rgba(106, 139, 255, 0.25);
  font-size: 13px;
}

.trust-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
}

.trust-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.badge {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 4px 10px;
  border-radius: 10px;
  font-size: 12px;
}

.hero-visual {
  position: relative;
  display: grid;
  gap: 18px;
}

.glass-card {
  background: rgba(15, 20, 40, 0.8);
  border: 1px solid rgba(106, 139, 255, 0.2);
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.glass-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 13px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.6;
}

.glass-body {
  display: grid;
  gap: 12px;
}

.pos-metric {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.04);
  padding: 10px 14px;
  border-radius: 12px;
}

.pos-list {
  display: grid;
  gap: 8px;
}

.pos-item {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--muted);
}

.pos-footer {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.chip {
  background: rgba(79, 209, 255, 0.12);
  border: 1px solid rgba(79, 209, 255, 0.3);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
}

.stat-card {
  padding: 18px;
  border-radius: 16px;
  background: rgba(14, 20, 40, 0.8);
  border: 1px solid rgba(168, 85, 247, 0.2);
}

.stat-card h4 {
  font-size: 14px;
  margin-bottom: 8px;
}

.bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
}

.bar span {
  display: block;
  height: 100%;
  background: var(--gradient);
}

.section-heading {
  text-align: center;
  margin-bottom: 48px;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin-bottom: 12px;
}

.section-heading p {
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 22px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.feature-card h3 {
  margin: 12px 0;
}

.feature-card ul {
  list-style: none;
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
}

.feature-showcase {
  display: grid;
  gap: 22px;
}

.feature-pair {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 22px;
}

.feature-group {
  background: rgba(12, 18, 36, 0.9);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(106, 139, 255, 0.2);
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-group:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 70px rgba(8, 12, 26, 0.55);
}

.feature-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
}

.feature-head h3 {
  margin-bottom: 6px;
}

.feature-head p {
  color: var(--muted);
  font-size: 14px;
}

.icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(106, 139, 255, 0.35), rgba(168, 85, 247, 0.35));
  border: 1px solid rgba(106, 139, 255, 0.4);
  font-size: 22px;
}

.feature-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  align-items: stretch;
}

.feature-block {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 10px;
  align-content: start;
}

.feature-block h4 {
  font-size: 15px;
}

.feature-list {
  list-style: none;
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.feature-badge {
  background: rgba(79, 209, 255, 0.15);
  border: 1px solid rgba(79, 209, 255, 0.35);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  color: var(--text);
}

.features-cta {
  margin-top: 32px;
  padding: 24px;
  border-radius: 20px;
  background: linear-gradient(120deg, rgba(106, 139, 255, 0.18), rgba(168, 85, 247, 0.25));
  border: 1px solid rgba(106, 139, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.features-cta p {
  color: var(--muted);
}

.features-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.icon {
  font-size: 24px;
}

.demo-grid {
  display: grid;
  gap: 40px;
}

.demo-phone {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
}

.phone {
  background: rgba(10, 14, 30, 0.8);
  border: 1px solid rgba(106, 139, 255, 0.25);
  border-radius: 28px;
  padding: 18px;
  position: relative;
  min-height: 300px;
}

.phone-notch {
  width: 60px;
  height: 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  margin: 0 auto 12px;
}

.phone-screen {
  display: grid;
  gap: 12px;
}

.phone-screen.alt {
  gap: 16px;
}

.screen-title {
  font-weight: 600;
  font-size: 14px;
}

.screen-card {
  background: rgba(255, 255, 255, 0.06);
  padding: 12px;
  border-radius: 14px;
  font-size: 13px;
  display: grid;
  gap: 6px;
}

.screen-list {
  display: grid;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}

.screen-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}

.screen-chart {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.screen-chart span {
  height: 36px;
  background: rgba(79, 209, 255, 0.4);
  border-radius: 8px;
}

.screen-chart span:nth-child(2) { height: 28px; }
.screen-chart span:nth-child(3) { height: 42px; }
.screen-chart span:nth-child(4) { height: 20px; }

.demo-desktop {
  display: grid;
  gap: 24px;
}

.desktop {
  background: rgba(12, 18, 36, 0.9);
  border-radius: 22px;
  border: 1px solid rgba(106, 139, 255, 0.2);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.desktop-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 18px;
  background: rgba(0, 0, 0, 0.2);
  font-size: 13px;
  color: var(--muted);
}

.desktop-body {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  padding: 20px;
}

.desktop-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 16px;
  display: grid;
  gap: 12px;
  font-size: 13px;
}

.desktop-card.accent {
  background: linear-gradient(130deg, rgba(106, 139, 255, 0.2), rgba(168, 85, 247, 0.2));
}

.search {
  padding: 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
}

.desktop-list {
  display: grid;
  gap: 6px;
  color: var(--muted);
}

.bill-row {
  display: flex;
  justify-content: space-between;
}

.chart {
  height: 120px;
  background: linear-gradient(180deg, rgba(106, 139, 255, 0.6), transparent);
  border-radius: 14px;
}

.pill-row {
  display: flex;
  gap: 8px;
  font-size: 12px;
  flex-wrap: wrap;
}

.pill-row span {
  background: rgba(255, 255, 255, 0.08);
  padding: 4px 8px;
  border-radius: 999px;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.quick-grid div {
  background: rgba(255, 255, 255, 0.08);
  padding: 8px;
  border-radius: 10px;
}

.demo-cta {
  padding: 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(106, 139, 255, 0.2);
}

.demo-image img {
  width: 100%;
  border-radius: 20px;
  border: 1px solid rgba(106, 139, 255, 0.25);
  box-shadow: var(--shadow);
  display: block;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.pillar-card {
  background: rgba(12, 18, 36, 0.9);
  border-radius: 18px;
  padding: 20px;
  border: 1px solid rgba(106, 139, 255, 0.2);
  display: grid;
  gap: 12px;
}

.pillar-card ul {
  list-style: none;
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
}

.master-cta {
  margin-top: 28px;
  padding: 22px;
  border-radius: 18px;
  background: linear-gradient(130deg, rgba(106, 139, 255, 0.2), rgba(168, 85, 247, 0.2));
  border: 1px solid rgba(106, 139, 255, 0.3);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.price-card {
  background: var(--card);
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 24px;
  display: grid;
  gap: 12px;
}

.price-card ul {
  list-style: none;
  display: grid;
  gap: 6px;
  color: var(--muted);
}

.price {
  font-size: 26px;
  font-weight: 700;
}

.price span {
  font-size: 13px;
  color: var(--muted);
}

.price-card.highlight {
  background: linear-gradient(150deg, rgba(106, 139, 255, 0.25), rgba(168, 85, 247, 0.25));
  border: 1px solid rgba(168, 85, 247, 0.4);
}

.tag {
  align-self: start;
  background: rgba(255, 255, 255, 0.12);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.industry-card {
  padding: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(106, 139, 255, 0.2);
  text-align: center;
  font-weight: 600;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.roadmap-card {
  background: rgba(15, 20, 40, 0.85);
  border-radius: 18px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  gap: 12px;
}

.roadmap-card ul {
  list-style: none;
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
}

.phase-note {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(106, 139, 255, 0.2);
  font-size: 14px;
  color: var(--muted);
}

.why-card {
  padding: 20px;
  border-radius: 16px;
  background: rgba(10, 14, 30, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact {
  background: rgba(9, 13, 27, 0.9);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.contact-info h2 {
  margin-bottom: 14px;
}

.contact-card {
  display: grid;
  gap: 12px;
  margin: 20px 0;
  background: rgba(255, 255, 255, 0.05);
  padding: 18px;
  border-radius: 16px;
}

.contact-card span {
  font-size: 12px;
  color: var(--muted);
}

.contact-card strong {
  display: block;
  font-weight: 600;
}

.contact-form {
  background: rgba(255, 255, 255, 0.05);
  padding: 24px;
  border-radius: 18px;
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
}

input {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 14, 30, 0.9);
  color: var(--text);
}

.form-note {
  font-size: 12px;
  color: var(--muted);
}

.footer {
  padding: 40px 0 24px;
  background: rgba(7, 10, 20, 0.95);
  border-top: 1px solid rgba(106, 139, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-links,
.footer-social div {
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.footer-bottom {
  margin-top: 20px;
  text-align: center;
  font-size: 12px;
  color: var(--muted);
}

.btn {
  border: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: var(--gradient);
  color: #0b0f1f;
  box-shadow: 0 12px 30px rgba(106, 139, 255, 0.35);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.btn:hover {
  transform: translateY(-2px);
}

.whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #25d366;
  color: #04130a;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  font-weight: 700;
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  z-index: 20;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  z-index: 30;
}

.modal.open {
  display: grid;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 4, 10, 0.7);
}

.modal-card {
  position: relative;
  background: var(--card-strong);
  border-radius: 20px;
  padding: 28px;
  width: min(400px, 92vw);
  border: 1px solid rgba(106, 139, 255, 0.2);
  box-shadow: var(--shadow);
  z-index: 2;
  display: grid;
  gap: 14px;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  width: 32px;
  height: 32px;
  border-radius: 999px;
  color: var(--text);
  cursor: pointer;
}

.modal-form {
  display: grid;
  gap: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.bg-orb {
  position: fixed;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(106, 139, 255, 0.35), transparent 70%);
  filter: blur(10px);
  opacity: 0.9;
  z-index: 0;
}

.orb-1 {
  top: -120px;
  left: -120px;
}

.orb-2 {
  bottom: -160px;
  right: -80px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.35), transparent 70%);
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.18;
  z-index: 0;
  pointer-events: none;
}

@media (max-width: 960px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

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

@media (max-width: 720px) {
  .section {
    padding: 72px 0;
  }

  .hero {
    padding-top: 100px;
  }

  .demo-phone {
    grid-template-columns: 1fr;
  }

  .whatsapp {
    right: 16px;
    bottom: 16px;
  }
}
