:root {
  --navy: #071b52;
  --blue: #1e6fd9;
  --line: #d9e6ff;
  --text: #0b1736;
  --muted: #5e6b86;
  --red: #d92d20;
  --shadow: 0 18px 45px rgba(7, 27, 82, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  /* font-family:
    Inter,
    Segoe UI,
    Arial,
    sans-serif; */
  color: var(--text);
  background: white;
}

a {
  text-decoration: none;
  color: inherit;
}

.impact span.counter {
  font-size: 28px;
  font-weight: 700;
  color: #1e6fd9;
}

img,
video {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1180px, 92%);
  margin: auto;
}

.nav {
  height: 76px;
  background: white;
  border-bottom: 1px solid #edf2ff;
  position: sticky;
  top: 0;
  z-index: 30;
  box-shadow: var(--shadow);
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 27px;
  font-weight: 900;
  letter-spacing: 0.4px;
  color: var(--navy);
}

.logo span {
  color: var(--blue);
}

.menu {
  display: none;
  gap: 30px;
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 9px;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 900;
  border: 1px solid var(--blue);
  cursor: pointer;
}

.btn.primary {
  background: var(--blue);
  color: white;
}

.btn.secondary {
  background: white;
  color: var(--blue);
}

section {
  padding: 60px 0;
}

.pale {
  background: linear-gradient(180deg, #fff, #f6f9ff);
}

.dark {
  background: var(--navy);
  color: white;
}

.dark h2,
.dark h3 {
  color: white;
}

.dark .lead {
  color: #dce7ff;
}

.dark .eyebrow {
  color: #8db8ff;
}

.hero {
  padding: 66px 0 54px;
  background:
    radial-gradient(
      circle at 12% 28%,
      rgba(30, 111, 217, 0.08),
      transparent 24%
    ),
    linear-gradient(180deg, #fff, #fbfdff);
  background-image: url(../assets/Hero-Banner-1.png);
  background-repeat: no-repeat;
  background-position: top right;
}

.hero-grid {
  display: grid;
  grid-template-columns: 2.5fr 1.22fr;
  gap: 46px;
  align-items: center;
}

h1 {
  font-size: 47px;
  line-height: 1.05;
  margin: 0 0 22px;
  color: var(--navy);
  letter-spacing: -1.5px;
  font-weight: 700;
}

h1 .accent {
  color: var(--blue);
  font-weight: 700;
}

h2 {
  font-size: 42px;
  line-height: 1.12;
  margin: 0;
  color: var(--navy);
  letter-spacing: -0.9px;
  font-weight: 700;
}

h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 22px;
  font-weight: 700;
}

.container.cta h2 {
  width: 70%;
  margin-bottom: 10px;
}

.error {
  color: red !important;
  font-size: 12px;
  position: absolute;
}

.lead {
  font-size: 18px;
  line-height: 1.7;
  font-weight: 600;
  color: var(--text);
  max-width: 700px;
}

.eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--blue);
  font-weight: 950;
  margin-bottom: 10px;
}

.chips {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 28px 0;
  max-width: 670px;
}

.chip {
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 14px;
  font-size: 13px;
  font-weight: 850;
  box-shadow: var(--shadow);
}

.product-shot {
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 14px;
  box-shadow: var(--shadow);
}

.product-shot img,
.product-shot video {
  width: 100%;
  border-radius: 16px;
}

.hero-shot {
  padding: 10px;
  border-radius: 24px;
}

.trust {
  padding: 34px 0;
  border-top: 1px solid #edf2ff;
  border-bottom: 1px solid #edf2ff;
  text-align: center;
  background: white;
}

.trust-title {
  color: var(--blue);
  font-weight: 950;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 26px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: center;
  font-weight: 850;
  color: var(--navy);
}

.section-title {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto 48px;
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.card p {
  margin: 0;
  line-height: 1.65;
  color: var(--muted);
}

.icon {
  font-size: 38px;
  color: var(--blue);
  margin-bottom: 12px;
}

.excel-vs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.vs-card {
  border-radius: 24px;
  padding: 32px;
  border: 1px solid var(--line);
  background: white;
  box-shadow: var(--shadow);
  min-height: 355px;
  /* display: grid;
      grid-template-columns: 1fr .9fr; */
  gap: 24px;
  align-items: center;
}

.vs-card ul.clean.bad,
.vs-card ul.clean.good {
  margin-bottom: 20px;
}

.vs-card.excel {
  background: #fff7f7;
}

.vs-card.toolivo {
  background: #f5faff;
}

ul.clean {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 13px;
}

ul.clean li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--text);
  font-weight: 650;
  line-height: 1.45;
}

.feature ul.clean li,
.dark-card ul.clean li {
  color: #dce7ff;
  font-weight: 500;
}

.dark-card ul.clean li::before,
.feature .good li::before {
  color: #dce7ff;
}

.bad li::before {
  content: "✕";
  color: var(--red);
  font-weight: 950;
}

.good li::before {
  content: "✓";
  color: var(--blue);
  font-weight: 950;
}

.erp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.lifecycle {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.stage {
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px 16px;
  text-align: center;
  box-shadow: var(--shadow);
}

.stage .circle {
  width: 64px;
  height: 64px;
  margin: 0 auto 14px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 27px;
  color: var(--blue);
  background: white;
}

.stage strong {
  display: block;
  color: var(--navy);
  margin-bottom: 8px;
}

.stage p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr 0.85fr;
  gap: 24px;
}

.compare-table {
  grid-column: span 2;
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid #edf2ff;
}

.row:last-child {
  border-bottom: 0;
}

.row div {
  padding: 18px 22px;
  font-weight: 750;
}

.row div:first-child {
  background: #fff7f7;
  color: #9b1c1c;
}

.row div:last-child {
  background: #f4f8ff;
  color: var(--navy);
}

.dark-card {
  background: var(--navy);
  color: white;
  border-radius: 22px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.dark-card h3 {
  color: white;
}

.dark-card p,
.dark-card li {
  color: #dce7ff;
}

.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.feature:last-child {
  border-bottom: 0;
}

.feature.reverse .copy {
  order: 2;
}

.feature.reverse .visual {
  order: 1;
}

.feature-number {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 950;
  margin-bottom: 20px;
  position: relative;
}

.feature-number:after {
  position: absolute;
  width: 50px;
  height: 50px;
  border: 1px dashed #fff;
  top: -5px;
  content: "";
  border-radius: 50%;
}

.impact {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.metric {
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px 18px;
  text-align: center;
  box-shadow: var(--shadow);
}

.metric strong {
  display: block;
  font-size: 26px;
  color: var(--blue);
  line-height: 1.05;
}

.metric p {
  margin: 12px 0 0;
  font-weight: 500;
  color: var(--navy);
  font-size: 14px;
  line-height: 1.35;
}

.team-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 30px;
  align-items: center;
}

.people {
  display: grid;
  grid-template-columns: repeat(3, 2fr);
  gap: 14px;
}

.person {
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  text-align: center;
  box-shadow: var(--shadow);
}

.avatar {
  width: 56px;
  height: 56px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 950;
  font-size: 20px;
}

.person p {
  margin: 4px 0 0;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
}

.resources {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.cta {
  background: #f5f9ff;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 42px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  align-items: center;
  box-shadow: var(--shadow);
}

footer {
  background: var(--navy);
  color: white;
  padding: 58px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 30px;
}

footer p,
footer a {
  color: #c9d6ff;
  font-size: 14px;
  line-height: 1.8;
}

footer h4 {
  margin: 0 0 16px;
}

.bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  margin-top: 34px;
  padding-top: 18px;
  color: #c9d6ff;
  font-size: 13px;
  justify-content: space-between;
}

.float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
}

.logo img {
  width: 150px;
}

@media (max-width: 960px) {
  .menu {
    display: none;
  }

  .hero-grid,
  .excel-vs,
  .erp-grid,
  .compare,
  .feature,
  .team-grid,
  .cta {
    grid-template-columns: 1fr;
  }

  .feature.reverse .copy,
  .feature.reverse .visual {
    order: initial;
  }

  .cards-3,
  .lifecycle,
  .impact,
  .resources,
  .footer-grid,
  .people,
  .trust-row {
    grid-template-columns: 1fr;
  }

  .chips {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 32px;
  }

  .vs-card {
    grid-template-columns: 1fr;
  }

  .compare-table {
    grid-column: auto;
  }

  section,
  .cta {
    padding: 20px;
  }

  .section-title {
    margin: 0 auto 15px;
  }

  .container.cta h2 {
    width: 100%;
  }

  .hero {
    background-image: none;
  }

  .float {
    display: none;
  }
}
