/* ERPnow Landing Page */

:root {
  --red: #f12614;
  --red-dark: #c9180b;
  --dark: #242528;
  --black: #050505;
  --muted: #6b7280;
  --soft: #f7f8fb;
  --line: #e8ecf3;
  --white: #ffffff;
  --green: #10b981;
  --blue: #2563eb;
  --shadow: 0 24px 70px rgba(20, 20, 30, .12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: var(--soft);
  color: var(--dark);
  line-height: 1.65;
  overflow-x: hidden;
}

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

.container {
  width: min(1180px, 92%);
  margin: auto;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='256' height='256' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(232, 236, 243, .75);
}

.nav {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 300px;
  height: auto;
  display: block;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 800;
  color: #5b6475;
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  transition: .25s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  box-shadow: 0 18px 36px rgba(241, 38, 20, .28);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px rgba(241, 38, 20, .34);
}

.btn-light {
  color: var(--dark);
  background: white;
  border-color: var(--line);
  box-shadow: 0 12px 26px rgba(20, 20, 30, .06);
}

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

.btn-dark {
  color: white;
  background: #18191c;
  box-shadow: 0 16px 36px rgba(20, 20, 30, .18);
}

.hero {
  position: relative;
  padding: 86px 0 94px;
  background:
    radial-gradient(circle at 8% 12%, rgba(241, 38, 20, .16), transparent 28%),
    radial-gradient(circle at 88% 8%, rgba(37, 99, 235, .12), transparent 30%),
    linear-gradient(180deg, #fff 0%, #f7f8fb 100%);
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
  opacity: .35;
  animation: float 7s ease-in-out infinite;
}

.orb-one {
  width: 190px;
  height: 190px;
  background: var(--red);
  left: -70px;
  bottom: 70px;
}

.orb-two {
  width: 220px;
  height: 220px;
  background: #111;
  right: -90px;
  top: 120px;
  animation-delay: 1.4s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-24px) scale(1.04);
  }
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 56px;
  align-items: center;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 15px;
  border-radius: 999px;
  background: #fff0ee;
  color: var(--red);
  border: 1px solid #ffd6d1;
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 22px;
}

.eyebrow span {
  width: 9px;
  height: 9px;
  background: var(--red);
  border-radius: 999px;
  box-shadow: 0 0 0 6px rgba(241, 38, 20, .12);
}

h1 {
  font-size: clamp(42px, 6.2vw, 78px);
  line-height: .98;
  letter-spacing: -3.2px;
  color: #232428;
  margin-bottom: 24px;
}

h1 span {
  background: linear-gradient(135deg, var(--red), #111);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy {
  font-size: 18px;
  color: var(--muted);
  max-width: 680px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.trust {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  gap: 13px;
  color: #596273;
  font-size: 14px;
  font-weight: 800;
}

.pill {
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 13px;
  box-shadow: 0 8px 20px rgba(20, 20, 30, .04);
}

.dashboard-wrap {
  position: relative;
  perspective: 1200px;
}

.dashboard-card {
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 34px;
  padding: 18px;
  box-shadow: var(--shadow);
  transform: rotateX(4deg) rotateY(-7deg);
  animation: dashboard 6s ease-in-out infinite;
}

@keyframes dashboard {
  0%, 100% {
    transform: rotateX(4deg) rotateY(-7deg) translateY(0);
  }

  50% {
    transform: rotateX(2deg) rotateY(-4deg) translateY(-12px);
  }
}

.dash-top {
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6px 14px;
}

.traffic {
  display: flex;
  gap: 8px;
}

.traffic i {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #d8dde8;
  display: block;
}

.dash-status {
  background: #111;
  color: white;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 900;
}

.dashboard-screen {
  background: #0f1117;
  border-radius: 24px;
  padding: 18px;
  color: white;
  overflow: hidden;
}

.dash-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}

.metric {
  background: linear-gradient(180deg, #1b1e27, #141720);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 18px;
  padding: 16px;
}

.metric small {
  color: #9aa4b5;
  display: block;
}

.metric strong {
  font-size: 24px;
  color: white;
}

.metric em {
  color: var(--green);
  font-style: normal;
  font-size: 12px;
  font-weight: 900;
}

.chart-box {
  display: grid;
  grid-template-columns: 1.45fr .75fr;
  gap: 14px;
}

.chart {
  height: 230px;
  background: linear-gradient(180deg, #181c26, #11141c);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 22px;
  padding: 18px;
  display: flex;
  align-items: end;
  gap: 10px;
}

.bar {
  flex: 1;
  border-radius: 9px 9px 0 0;
  background: linear-gradient(180deg, var(--red), #8e1108);
  min-height: 28px;
  animation: bar 2.8s ease-in-out infinite alternate;
}

.bar:nth-child(2n) {
  animation-delay: .3s;
}

.bar:nth-child(3n) {
  animation-delay: .6s;
}

@keyframes bar {
  from {
    filter: saturate(.85);
    transform: scaleY(.92);
    transform-origin: bottom;
  }

  to {
    filter: saturate(1.2);
    transform: scaleY(1.02);
    transform-origin: bottom;
  }
}

.activity {
  background: linear-gradient(180deg, #181c26, #11141c);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 22px;
  padding: 16px;
  display: grid;
  gap: 10px;
}

.activity h4 {
  font-size: 14px;
  margin-bottom: 4px;
}

.activity-row {
  min-height: 38px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .06);
  display: flex;
  align-items: center;
  padding: 0 12px;
  color: #b8c0ce;
  font-size: 12px;
}

.floating-card {
  position: absolute;
  background: white;
  color: var(--dark);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 16px 18px;
  box-shadow: 0 22px 46px rgba(20, 20, 30, .16);
  font-weight: 900;
  animation: float 5.8s ease-in-out infinite;
}

.floating-one {
  left: -36px;
  bottom: 36px;
}

.floating-two {
  right: -20px;
  top: 42px;
  animation-delay: .8s;
}

.floating-card small {
  display: block;
  color: var(--muted);
  font-weight: 700;
}

section {
  padding: 88px 0;
}

.section-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 46px;
}

.section-head h2 {
  font-size: clamp(32px, 4.4vw, 54px);
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 16px;
}

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

.logos-strip {
  padding: 26px 0;
  background: white;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
  color: #555f70;
  font-weight: 900;
}

.strip-item {
  padding: 14px;
  border-radius: 16px;
  background: #fafbfe;
  border: 1px solid var(--line);
}

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

.feature {
  position: relative;
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 28px;
  box-shadow: 0 16px 34px rgba(20, 20, 30, .05);
  transition: .25s ease;
}

.feature:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 48px rgba(20, 20, 30, .09);
}

.feature::after {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  background: rgba(241, 38, 20, .08);
  border-radius: 50%;
  right: -34px;
  top: -34px;
}

.icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: #fff0ee;
  color: var(--red);
  font-size: 26px;
  margin-bottom: 18px;
}

.feature h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

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

.dark-section {
  background: #15161a;
  color: white;
  position: relative;
  overflow: hidden;
}

.dark-section::before {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: rgba(241, 38, 20, .18);
  filter: blur(40px);
  right: -180px;
  top: -150px;
}

.solution-grid {
  position: relative;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 46px;
  align-items: center;
  z-index: 2;
}

.solution-grid h2 {
  font-size: clamp(34px, 4.7vw, 58px);
  line-height: 1.04;
  letter-spacing: -2px;
  margin-bottom: 18px;
}

.solution-grid p {
  color: #cbd5e1;
  margin-bottom: 26px;
}

.checks {
  display: grid;
  gap: 14px;
}

.check {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  padding: 18px;
  border-radius: 20px;
}

.check b {
  color: white;
}

.check span {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: var(--green);
  flex: 0 0 26px;
  font-weight: 900;
}

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

.industry {
  background: white;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: 0 16px 34px rgba(20, 20, 30, .05);
  transition: .25s ease;
}

.industry:hover {
  transform: translateY(-7px);
}

.industry div {
  font-size: 38px;
  margin-bottom: 10px;
}

.industry h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

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

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

.price-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 30px;
  box-shadow: 0 16px 34px rgba(20, 20, 30, .05);
  position: relative;
}

.price-card.popular {
  border: 2px solid var(--red);
  transform: scale(1.035);
  box-shadow: 0 28px 70px rgba(241, 38, 20, .16);
}

.tag {
  display: inline-flex;
  background: #fff0ee;
  color: var(--red);
  border: 1px solid #ffd5d0;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 16px;
}

.price-card h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.price-card p {
  color: var(--muted);
}

.price {
  font-size: 42px;
  font-weight: 950;
  letter-spacing: -1.5px;
  margin: 18px 0 4px;
}

.price small {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
}

ul {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 24px 0;
  color: #586174;
}

li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

li::before {
  content: "✓";
  color: white;
  background: var(--green);
  width: 20px;
  height: 20px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 900;
  flex: 0 0 20px;
  margin-top: 2px;
}

.faq-wrap {
  max-width: 900px;
  margin: auto;
  display: grid;
  gap: 14px;
}

details {
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 20px 22px;
  box-shadow: 0 12px 28px rgba(20, 20, 30, .04);
}

summary {
  cursor: pointer;
  font-weight: 900;
  font-size: 17px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  color: var(--red);
  font-size: 24px;
  line-height: 1;
}

details[open] summary::after {
  content: "−";
}

details p {
  color: var(--muted);
  margin-top: 12px;
}

.cta-box {
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 255, 255, .22), transparent 28%),
    linear-gradient(135deg, var(--red), #9f1007);
  border-radius: 38px;
  color: white;
  padding: 64px 32px;
  text-align: center;
  box-shadow: 0 30px 70px rgba(241, 38, 20, .22);
  position: relative;
  overflow: hidden;
}

.cta-box h2 {
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.04;
  letter-spacing: -2px;
  margin-bottom: 16px;
}

.cta-box p {
  color: #ffe2df;
  max-width: 680px;
  margin: 0 auto 28px;
  font-size: 17px;
}

footer {
  background: #111215;
  color: #cbd5e1;
  padding: 54px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 30px;
  margin-bottom: 34px;
}

.footer-logo {
  width: 270px;
  height: auto;
  display: block;
  margin-bottom: 16px;
}

.footer-grid p,
.footer-grid a {
  color: #9aa4b5;
  font-size: 14px;
}

.footer-grid h4 {
  color: white;
  margin-bottom: 14px;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 24px;
  color: #858fa1;
  font-size: 14px;
  text-align: center;
}

.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  width: 62px;
  height: 62px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #25d366;
  color: white;
  box-shadow: 0 18px 40px rgba(37, 211, 102, .35);
  animation: pulse 2s infinite;
}

.wa-float svg {
  width: 32px;
  height: 32px;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, .45), 0 18px 40px rgba(37, 211, 102, .35);
  }

  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0), 0 18px 40px rgba(37, 211, 102, .35);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 18px 40px rgba(37, 211, 102, .35);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  animation: reveal .8s ease forwards;
}

.delay-1 {
  animation-delay: .1s;
}

.delay-2 {
  animation-delay: .2s;
}

.delay-3 {
  animation-delay: .3s;
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .brand img {
    width: 260px;
  }

  .hero-grid,
  .solution-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-card {
    transform: none;
  }

  .features,
  .industries,
  .pricing,
  .strip-grid {
    grid-template-columns: 1fr;
  }

  .price-card.popular {
    transform: none;
  }

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

  .floating-card {
    display: none;
  }
}

@media (max-width: 620px) {
  .nav {
    min-height: 76px;
  }

  .nav-cta .btn-light {
    display: none;
  }

  .nav-cta .btn-primary {
    padding: 11px 14px;
    font-size: 13px;
  }

  .brand img {
    width: 190px;
  }

  h1 {
    letter-spacing: -2px;
  }

  section {
    padding: 70px 0;
  }

  .hero {
    padding: 62px 0 74px;
  }

  .dash-grid,
  .chart-box {
    grid-template-columns: 1fr;
  }

  .chart {
    height: 170px;
  }

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

  .hero-actions .btn,
  .cta-box .btn {
    width: 100%;
  }

  .wa-float {
    width: 56px;
    height: 56px;
    right: 16px;
    bottom: 16px;
  }

  .footer-logo {
    width: 220px;
  }
}
