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

:root {
  --bg: #060b1f;
  --bg-soft: #0b1025;
  --card: rgba(255, 255, 255, 0.05);
  --card-strong: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.1);
  --text: #ffffff;
  --muted: #b8c1d9;
  --accent: #7567ff;
  --accent-soft: #8d82ff;
  --success: #2ad28b;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background: radial-gradient(circle at top left, #08112f 0%, #060b1f 45%, #040816 100%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

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

ul {
  list-style: none;
}

.bg-glow {
  position: fixed;
  border-radius: 999px;
  filter: blur(120px);
  opacity: 0.28;
  pointer-events: none;
  z-index: 0;
}

.glow-1 {
  width: 320px;
  height: 320px;
  background: var(--accent);
  top: 120px;
  right: 180px;
}

.glow-2 {
  width: 260px;
  height: 260px;
  background: #1c8cff;
  bottom: 120px;
  left: 120px;
}

.navbar,
.hero,
.section,
.logo-strip,
.trust-strip,
.cta-banner,
.footer {
  position: relative;
  z-index: 2;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 8%;
  position: sticky;
  top: 0;
  z-index: 9999;
  backdrop-filter: blur(12px);
  background: rgba(6, 11, 31, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.logo {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
  position: relative;
  z-index: 10000;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  position: relative;
  z-index: 10000;
}

.nav-links a {
  color: #eef2ff;
  font-weight: 600;
  transition: opacity 0.2s ease;
  position: relative;
  z-index: 10001;
  pointer-events: auto;
}

.nav-links a:hover {
  opacity: 0.8;
}

.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 64px;
  padding: 90px 8% 80px;
  min-height: 88vh;
}

.hero-content {
  max-width: 700px;
}

.tag,
.section-tag {
  display: inline-block;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid rgba(117, 103, 255, 0.4);
  background: rgba(117, 103, 255, 0.12);
  color: #c9c3ff;
  font-size: 15px;
}

.hero h1 {
  margin-top: 24px;
  font-size: 76px;
  line-height: 0.98;
  letter-spacing: -2px;
  max-width: 820px;
}

.subtext {
  font-size: 20px;
  color: var(--muted);
  max-width: 720px;
  margin: 28px 0 34px;
}

.hero-buttons,
.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary,
.btn-outline,
.full-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 24px;
  border-radius: 16px;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-outline:hover,
.full-btn:hover,
.card:hover,
.step-card:hover,
.industry-card:hover,
.faq-card:hover,
.testimonial-card:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  box-shadow: 0 18px 40px rgba(117, 103, 255, 0.28);
}

.btn-secondary,
.btn-outline {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: white;
}

.hero-stats {
  margin-top: 40px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.stat {
  min-width: 150px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
}

.stat h3 {
  font-size: 28px;
  margin-bottom: 4px;
}

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

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 560px;
  min-height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.dashboard-mockup {
  width: 100%;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border: 1px solid var(--border);
  box-shadow: 0 30px 100px rgba(20, 26, 60, 0.7);
  overflow: hidden;
}

.dashboard-top {
  display: flex;
  gap: 8px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.03);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.28);
}

.dashboard-main-card {
  padding: 22px;
}

.metric-card,
.activity-card,
.mini-card,
.faq-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 20px;
}

.metric-card {
  padding: 22px;
  margin-bottom: 18px;
}

.metric-label {
  display: inline-block;
  font-size: 13px;
  color: #aab5d2;
  margin-bottom: 8px;
}

.metric-card strong {
  display: block;
  font-size: 26px;
  margin-bottom: 8px;
}

.metric-card p {
  color: var(--muted);
  font-size: 15px;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 18px;
}

.mini-card {
  padding: 18px;
}

.mini-card span {
  display: block;
  color: #aab5d2;
  font-size: 14px;
  margin-bottom: 8px;
}

.mini-card strong {
  font-size: 28px;
}

.activity-card {
  padding: 18px;
}

.activity-line {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
  color: var(--muted);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.activity-line:last-child {
  border-bottom: none;
}

.floating-card {
  position: absolute;
  padding: 14px 18px;
  border-radius: 16px;
  background: rgba(17, 23, 47, 0.92);
  border: 1px solid rgba(255,255,255,0.08);
  color: white;
  font-weight: 600;
  box-shadow: 0 15px 40px rgba(0,0,0,0.35);
  z-index: 3;
}

.floating-1 {
  top: 38px;
  right: -12px;
}

.floating-2 {
  bottom: 115px;
  left: -35px;
}

.floating-3 {
  bottom: 28px;
  right: 8px;
}

.logo-strip {
  padding: 24px 8%;
  text-align: center;
  color: #dbe4ff;
}

.logo-strip span {
  display: block;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 15px;
}

.logo-items {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.logo-items div {
  padding: 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  font-weight: 700;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  padding: 22px 8%;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: #d5ddf3;
}

.trust-strip div {
  text-align: center;
  font-weight: 600;
}

.section {
  padding: 110px 8%;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 40px;
}

.section-heading h2 {
  font-size: 52px;
  line-height: 1.05;
  margin-top: 18px;
  letter-spacing: -1.4px;
}

.section-subtext {
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
}

.center-heading {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 44px;
}

.steps-grid,
.grid,
.faq-grid {
  display: grid;
  gap: 24px;
}

.steps-grid {
  grid-template-columns: repeat(4, 1fr);
}

.grid {
  grid-template-columns: repeat(3, 1fr);
}

.faq-grid {
  grid-template-columns: repeat(2, 1fr);
}

.card,
.step-card,
.faq-card {
  border-radius: 24px;
  background: var(--card);
  border: 1px solid var(--border);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.card:hover,
.step-card:hover,
.faq-card:hover {
  border-color: rgba(117, 103, 255, 0.35);
  box-shadow: 0 24px 60px rgba(14, 18, 42, 0.35);
}

.feature-card,
.step-card,
.pricing-card,
.industry-card,
.testimonial-card,
.faq-card {
  padding: 28px;
}

.feature-card h3,
.step-card h3,
.pricing-card h3,
.faq-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.feature-card p,
.step-card p,
.industry-card,
.pricing-card li,
.price-desc,
.faq-card p,
.testimonial-card p {
  color: var(--muted);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  margin-bottom: 18px;
  font-weight: 800;
  background: rgba(117, 103, 255, 0.16);
  border: 1px solid rgba(117, 103, 255, 0.35);
  color: #d6d1ff;
}

.small-grid {
  grid-template-columns: repeat(3, 1fr);
}

.industry-card {
  font-size: 20px;
  font-weight: 700;
  color: white;
  text-align: center;
}

.testimonial-card strong {
  display: block;
  margin-top: 18px;
  color: #fff;
}

.pricing-grid {
  align-items: stretch;
}

.pricing-card {
  position: relative;
}

.price {
  font-size: 54px;
  line-height: 1;
  margin: 18px 0 12px;
  font-weight: 800;
}

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

.price-desc {
  margin-bottom: 18px;
}

.pricing-card ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 22px 0 28px;
}

.pricing-card li {
  position: relative;
  padding-left: 18px;
}

.pricing-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--success);
}

.full-btn {
  width: 100%;
}

.featured {
  border: 1px solid rgba(117, 103, 255, 0.48);
  box-shadow: 0 24px 80px rgba(117, 103, 255, 0.18);
}

.popular-badge {
  display: inline-block;
  margin-bottom: 16px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(117, 103, 255, 0.16);
  color: #d7d2ff;
  border: 1px solid rgba(117, 103, 255, 0.35);
  font-size: 13px;
  font-weight: 700;
}

/* Problem section */

.problem-section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 28px;
  align-items: start;
}

.problem-content h2 {
  margin-top: 18px;
  font-size: 52px;
  line-height: 1.05;
  letter-spacing: -1.4px;
}

.problem-points {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.problem-point {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.problem-dot {
  width: 12px;
  height: 12px;
  margin-top: 10px;
  border-radius: 999px;
  background: #ff4d4f;
  flex-shrink: 0;
}

.problem-point h3 {
  font-size: 24px;
  margin-bottom: 6px;
}

.problem-point p {
  color: var(--muted);
  font-size: 17px;
}

.problem-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.problem-stat-card {
  padding: 26px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.problem-stat-card strong {
  display: block;
  font-size: 46px;
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.problem-stat-card p {
  color: var(--muted);
  font-size: 16px;
}

/* ROI section */

.roi-section {
  padding-top: 100px;
  padding-bottom: 110px;
}

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

.roi-card {
  text-align: center;
  padding: 28px 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.04));
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.roi-card:hover {
  transform: translateY(-2px);
  border-color: rgba(117, 103, 255, 0.35);
  box-shadow: 0 24px 60px rgba(14, 18, 42, 0.35);
}

.roi-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.roi-card strong {
  display: block;
  font-size: 42px;
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -1px;
}

.roi-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.roi-card p {
  color: var(--muted);
  font-size: 16px;
}

.cta-banner {
  margin: 0 8% 90px;
  padding: 56px;
  text-align: center;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(117,103,255,0.18), rgba(42,210,139,0.08));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 24px 60px rgba(10, 16, 36, 0.35);
}

.cta-banner h2 {
  font-size: 52px;
  line-height: 1.05;
  margin-bottom: 14px;
  letter-spacing: -1px;
}

.cta-banner p {
  max-width: 760px;
  margin: 0 auto 26px;
  color: var(--muted);
  font-size: 18px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 8% 50px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-brand h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.footer-brand p {
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-links a {
  color: #dce3f7;
}

@media (max-width: 1200px) {
  .hero {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-visual {
    max-width: 100%;
    min-height: auto;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid,
  .small-grid,
  .logo-items {
    grid-template-columns: repeat(2, 1fr);
  }

  .problem-grid {
    grid-template-columns: 1fr;
  }

  .roi-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero h1 {
    font-size: 62px;
  }
}

@media (max-width: 760px) {
  .navbar {
    flex-direction: column;
    gap: 18px;
    padding: 22px 6%;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .hero,
  .section,
  .logo-strip,
  .trust-strip {
    padding-left: 6%;
    padding-right: 6%;
  }

  .hero {
    padding-top: 60px;
    gap: 40px;
  }

  .hero h1 {
    font-size: 46px;
    line-height: 1.02;
    letter-spacing: -1px;
  }

  .subtext {
    font-size: 18px;
  }

  .grid,
  .small-grid,
  .steps-grid,
  .trust-strip,
  .faq-grid,
  .logo-items,
  .problem-stats,
  .roi-grid {
    grid-template-columns: 1fr;
  }

  .mini-grid {
    grid-template-columns: 1fr;
  }

  .section-heading h2,
  .cta-banner h2,
  .problem-content h2 {
    font-size: 38px;
  }

  .problem-point h3 {
    font-size: 21px;
  }

  .cta-banner {
    margin-left: 6%;
    margin-right: 6%;
    padding: 36px 24px;
  }

  .footer {
    flex-direction: column;
    padding-left: 6%;
    padding-right: 6%;
  }

  .floating-card {
    position: static;
    margin-top: 12px;
  }
}