:root {
  --primary: #075eea;
  --primary2: #06a7f8;
  --accent: #14b8a6;
  --dark: #08142f;
  --text: #13213c;
  --muted: #667085;
  --bg: #f6faff;
  --white: #ffffff;
  --border: #dbeafe;
  --shadow: 0 24px 70px rgba(8, 20, 47, 0.14);
  --soft-shadow: 0 12px 35px rgba(7, 94, 234, 0.12);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family:
    Inter,
    Segoe UI,
    Arial,
    sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
.container {
  width: min(1180px, 92%);
  margin: auto;
}
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(219, 234, 254, 0.85);
}
.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  flex-shrink: 0;
}
.brand img {
  width: 150px;
  height: auto;
  display: block;
  object-fit: contain;
  background: transparent;
  border-radius: 0;
}
.brand-tagline {
  max-width: 270px;
  color: #475467;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.3;
  letter-spacing: 0.1px;
}
.menu {
  display: flex;
  gap: 28px;
  align-items: center;
  font-weight: 800;
  color: #344054;
}
.menu a:hover {
  color: var(--primary);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 900;
  cursor: pointer;
  transition: 0.25s ease;
  box-shadow: var(--soft-shadow);
}
.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--primary2));
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 45px rgba(7, 94, 234, 0.28);
}
.btn-light {
  color: var(--primary);
  background: white;
  border: 1px solid var(--border);
}
.btn-light:hover {
  transform: translateY(-2px);
}
.hero {
  position: relative;
  padding: 64px 0 86px;
  background:
    radial-gradient(
      circle at 12% 16%,
      rgba(20, 184, 166, 0.18),
      transparent 28%
    ),
    radial-gradient(circle at 80% 8%, rgba(6, 167, 248, 0.22), transparent 26%),
    linear-gradient(180deg, #fff 0%, #eff7ff 100%);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 46px;
  align-items: center;
}
h1 {
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--dark);
  margin-bottom: 22px;
}
.gradient-text {
  background: linear-gradient(
    135deg,
    var(--primary),
    var(--primary2),
    var(--accent)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p {
  font-size: 19px;
  color: #475467;
  max-width: 650px;
  margin-bottom: 30px;
}
.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.trust-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  color: #344054;
  font-weight: 800;
  font-size: 14px;
}
.pill {
  background: #fff;
  border: 1px solid var(--border);
  padding: 9px 13px;
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
}

/* Dashboard image with animated statistics */
.dashboard-showcase {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dashboard-frame {
  position: relative;
  width: 100%;
  border-radius: 30px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(191, 219, 254, 0.95);
  box-shadow: var(--shadow);
  overflow: visible;
}
.dashboard-frame::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  border-radius: 32px;
  background: linear-gradient(
    135deg,
    rgba(7, 94, 234, 0.3),
    rgba(6, 167, 248, 0.16),
    rgba(20, 184, 166, 0.25)
  );
  filter: blur(12px);
}
.dashboard-img {
  width: 100%;
  display: block;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: 0 18px 45px rgba(8, 20, 47, 0.18);
}
.floating-stat {
  position: absolute;
  z-index: 4;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(219, 234, 254, 0.95);
  border-radius: 20px;
  padding: 14px 16px;
  min-width: 150px;
  box-shadow: 0 18px 45px rgba(8, 20, 47, 0.18);
  backdrop-filter: blur(14px);
  animation: floatSoft 4.5s ease-in-out infinite;
}
.floating-stat strong {
  display: block;
  font-size: 24px;
  line-height: 1;
  color: var(--dark);
  margin-bottom: 4px;
}
.floating-stat span {
  display: block;
  font-size: 12px;
  letter-spacing: 0.2px;
  color: #667085;
  font-weight: 900;
}
.floating-stat .trend {
  margin-top: 7px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #099268;
  font-weight: 900;
  background: #e8fff6;
  border-radius: 999px;
  padding: 4px 8px;
}
.stat-sales {
  top: 26px;
  left: -28px;
  animation-delay: 0.1s;
}
.stat-stock {
  top: 54px;
  right: -30px;
  animation-delay: 0.7s;
}
.stat-invoice {
  bottom: 52px;
  left: -26px;
  animation-delay: 1.2s;
}
.stat-alert {
  bottom: 18px;
  right: -20px;
  animation-delay: 1.8s;
}
.pulse-dot {
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 50%;
  background: #14b8a6;
  box-shadow: 0 0 0 rgba(20, 184, 166, 0.7);
  animation: pulse 1.8s infinite;
}
@keyframes floatSoft {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-13px);
  }
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(20, 184, 166, 0.7);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(20, 184, 166, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(20, 184, 166, 0);
  }
}

.section {
  padding: 78px 0;
}
.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 42px;
}
.section-head h2 {
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 13px;
  letter-spacing: -1px;
}
.section-head p {
  color: #667085;
  font-size: 17px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.benefit-grid {
  grid-template-columns: 1fr 1fr;
}
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.07);
  transition: 0.25s ease;
  height: 100%;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(7, 94, 234, 0.16);
}
.icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 25px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, #eff6ff, #dff7ff);
  color: var(--primary);
}
.card h3 {
  font-size: 20px;
  color: var(--dark);
  margin-bottom: 8px;
}
.card p {
  color: #667085;
  font-size: 15px;
}
.business-wrap {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.business-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
}
.business {
  background: #f8fbff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 20px 14px;
  text-align: center;
  font-weight: 900;
  color: #24324b;
}
.business span {
  display: block;
  font-size: 30px;
  margin-bottom: 8px;
}
.why {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}
.why-panel {
  background: linear-gradient(135deg, #075eea, #06a7f8);
  color: #fff;
  border-radius: 30px;
  padding: 36px;
  box-shadow: var(--shadow);
}
.why-panel h2 {
  font-size: 40px;
  line-height: 1.12;
  margin-bottom: 16px;
}
.check-list {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}
.check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-weight: 750;
}
.check b {
  background: rgba(255, 255, 255, 0.2);
  min-width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.demo {
  background:
    radial-gradient(
      circle at 70% 20%,
      rgba(20, 184, 166, 0.2),
      transparent 25%
    ),
    linear-gradient(135deg, #08142f, #102654 55%, #075eea);
  color: #fff;
}
.demo-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  align-items: start;
}
.demo h2 {
  font-size: 42px;
  line-height: 1.12;
  margin-bottom: 16px;
}
.demo p {
  color: #dbeafe;
  font-size: 17px;
}
.demo-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  padding: 26px;
  backdrop-filter: blur(16px);
}
form {
  display: grid;
  gap: 14px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
label {
  font-size: 13px;
  font-weight: 900;
  color: #eaf6ff;
  display: block;
  margin-bottom: 6px;
}
input,
select,
textarea {
  width: 100%;
  padding: 13px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.92);
  color: #0f172a;
  outline: none;
  font: inherit;
}
textarea {
  min-height: 100px;
  resize: vertical;
}
.form-note {
  font-size: 13px;
  color: #bfdbfe;
  margin-top: 8px;
}
.footer {
  background: #020617;
  color: #cbd5e1;
  padding: 32px 0;
}
.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer img {
  width: 132px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 14px;
  padding: 6px 10px;
}
@media (max-width: 1020px) {
  .floating-stat {
    position: relative;
    inset: auto !important;
    min-width: auto;
  }
  .dashboard-showcase {
    display: grid;
    gap: 12px;
    min-height: auto;
  }
  .dashboard-frame {
    order: 1;
  }
  .stat-sales,
  .stat-stock,
  .stat-invoice,
  .stat-alert {
    order: 2;
  }
}
@media (max-width: 900px) {
  .menu {
    display: none;
  }
  .hero-grid,
  .why,
  .demo-grid {
    grid-template-columns: 1fr;
  }
  .grid {
    grid-template-columns: 1fr 1fr;
  }
  .business-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .nav {
    height: auto;
    padding: 12px 0;
  }
  .brand img {
    width: 110px;
  }
  .brand-tagline {
    max-width: 190px;
    font-size: 10px;
  }
  .btn {
    padding: 11px 15px;
    font-size: 14px;
  }
  .hero {
    padding: 55px 0;
  }
  .grid,
  .form-row,
  .business-grid {
    grid-template-columns: 1fr;
  }
  h1 {
    letter-spacing: -1px;
  }
}
