:root {
  --navy: #061D3A;
  --navy-2: #092B55;
  --green: #05A857;
  --green-2: #16C36A;
  --yellow: #FFC928;
  --blue: #2367E8;
  --ink: #0B1E35;
  --muted: #637083;
  --soft: #F3F7FC;
  --soft-2: #EAF2FB;
  --white: #FFFFFF;
  --line: #DDE7F3;
  --shadow: 0 20px 55px rgba(6, 29, 58, .14);
  --shadow-soft: 0 12px 35px rgba(6, 29, 58, .08);
  --radius: 26px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.5;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(221,231,243,.72);
}
.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--navy);
}
.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 14px;
}
.brand strong { color: var(--green); }
.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: .95rem;
  font-weight: 700;
  color: #20324B;
}
.nav a:not(.nav-cta) { opacity: .82; transition: .2s ease; }
.nav a:not(.nav-cta):hover { opacity: 1; color: var(--green); }
.nav-cta {
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--navy);
  color: white;
  box-shadow: 0 12px 28px rgba(6,29,58,.18);
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: var(--soft);
  color: var(--navy);
  font-size: 1.4rem;
  cursor: pointer;
}

.section { padding: 96px 0; position: relative; }
.section-soft { background: linear-gradient(180deg, #fff 0%, var(--soft) 100%); }
.section-navy {
  background:
    radial-gradient(circle at 90% 10%, rgba(255,201,40,.20), transparent 28%),
    radial-gradient(circle at 8% 86%, rgba(5,168,87,.20), transparent 26%),
    linear-gradient(135deg, var(--navy) 0%, #04152A 100%);
  color: #fff;
}
.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 42px;
}
.section-head h2,
.split h2,
.feature-copy h2,
.solution-grid h2,
.business-grid h2,
.dashboard-grid h2,
.cta-card h2 {
  margin: 14px 0 14px;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: .98;
  letter-spacing: -.06em;
}
.section-head p,
.split p,
.feature-copy p,
.solution-grid p,
.business-grid p,
.dashboard-grid p,
.cta-card p {
  color: var(--muted);
  font-size: 1.1rem;
  margin: 0;
}
.section-navy p { color: rgba(255,255,255,.78); }
.section-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--navy);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 900;
  font-size: .9rem;
  letter-spacing: -.01em;
  box-shadow: 0 8px 24px rgba(255,201,40,.24);
}
.section-pill.light { background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.18); box-shadow: none; }

.hero { padding: 74px 0 72px; overflow: hidden; }
.hero::before,
.hero::after,
.faq-section::before {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: #EAF2FB;
  filter: blur(.2px);
  z-index: 0;
}
.hero::before { width: 420px; height: 420px; right: -180px; top: -170px; }
.hero::after { width: 260px; height: 260px; left: -100px; bottom: -120px; }
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .94fr 1.06fr;
  align-items: center;
  gap: 54px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  font-weight: 800;
  color: var(--navy);
  box-shadow: var(--shadow-soft);
}
.hero h1 {
  margin: 24px 0 20px;
  font-size: clamp(3rem, 7vw, 5.6rem);
  line-height: .9;
  letter-spacing: -.08em;
  color: var(--navy);
}
.hero h1::after {
  content: "";
  display: block;
  width: 78px;
  height: 6px;
  border-radius: 10px;
  margin-top: 22px;
  background: var(--yellow);
}
.lead {
  color: #4E5E73;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  max-width: 650px;
  margin: 0 0 30px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--green); color: #fff; box-shadow: 0 18px 32px rgba(5,168,87,.24); }
.btn-primary:hover { background: #049B51; }
.btn-secondary { background: #fff; color: var(--navy); border-color: var(--line); box-shadow: var(--shadow-soft); }
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 640px;
}
.hero-metrics div {
  padding: 18px 16px;
  border-radius: 22px;
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow-soft);
}
.hero-metrics strong { display: block; color: var(--yellow); font-size: 1.05rem; }
.hero-metrics span { display: block; color: rgba(255,255,255,.72); font-size: .88rem; }
.hero-visual { position: relative; min-height: 520px; display: flex; align-items: center; }
.hero-visual .blob {
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: var(--yellow);
  opacity: .95;
  right: 20px;
  top: 12px;
  z-index: -1;
}
.hero-visual img {
  border-radius: 36px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.6);
}
.floating-card {
  position: absolute;
  z-index: 3;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(221,231,243,.85);
  border-radius: 22px;
  padding: 14px 18px;
  box-shadow: var(--shadow-soft);
}
.floating-card strong { display: block; color: var(--navy); }
.floating-card span { display: block; color: var(--green); font-size: .86rem; font-weight: 800; }
.card-one { top: 32px; left: -24px; }
.card-two { right: -20px; bottom: 38px; }

.trust-bar {
  background: var(--navy);
  color: #fff;
  padding: 22px 0;
}
.trust-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px 34px;
}
.trust-grid span { color: rgba(255,255,255,.58); font-weight: 800; }
.trust-grid strong { color: #fff; }

.split, .feature-row, .business-grid, .dashboard-grid, .solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.visual-card {
  border-radius: 36px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
  border: 1px solid var(--line);
}
.visual-card.dark { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.16); }
.visual-card img { width: 100%; height: auto; }
.pain-list { display: grid; gap: 14px; margin-top: 30px; }
.pain-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px;
  box-shadow: var(--shadow-soft);
}
.pain-list span {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--soft);
  font-size: 1.4rem;
}
.pain-list strong { color: var(--navy); font-size: 1.04rem; }
.pain-list p { font-size: .95rem; margin: 4px 0 0; }

.solution-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.solution-cards div {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 26px;
  padding: 24px;
}
.solution-cards span { font-size: 2rem; }
.solution-cards strong { display: block; margin: 12px 0 6px; font-size: 1.15rem; }
.solution-cards p { font-size: .95rem; }

.modules-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.module-card {
  min-height: 238px;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.module-card:hover {
  transform: translateY(-6px);
  border-color: rgba(5,168,87,.42);
  box-shadow: 0 24px 48px rgba(6,29,58,.12);
}
.module-card span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--soft), #fff);
  border: 1px solid var(--line);
  font-size: 1.65rem;
}
.module-card h3 { margin: 18px 0 8px; color: var(--navy); font-size: 1.16rem; letter-spacing: -.03em; }
.module-card p { margin: 0; color: var(--muted); font-size: .96rem; }

.feature-row.reverse .visual-card { order: 2; }
.feature-copy { max-width: 560px; }
.check-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: grid;
  gap: 12px;
}
.check-list li {
  position: relative;
  padding: 14px 16px 14px 48px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  font-weight: 750;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green);
  color: #fff;
  font-size: .9rem;
}

.flow-wrap .section-head { color: #fff; }
.flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 42px;
}
.flow-step {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 26px;
  padding: 22px;
  position: relative;
}
.flow-step span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--navy);
  font-weight: 950;
  margin-bottom: 16px;
}
.flow-step strong { display: block; font-size: 1.05rem; }
.flow-step p { margin-top: 8px; font-size: .93rem; }

.ideal-box {
  margin-top: 28px;
  padding: 24px;
  border-radius: 26px;
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow-soft);
}
.ideal-box strong { color: var(--yellow); font-size: 1.1rem; }
.ideal-box p { color: rgba(255,255,255,.76); margin-top: 8px; }
.business-cards {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 16px;
}
.business-cards article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
}
.business-cards span { font-size: 1.8rem; }
.business-cards h3 { margin: 12px 0 8px; color: var(--navy); }
.business-cards p { font-size: .95rem; margin: 0; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.price-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 30px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.price-card.featured {
  border: 2px solid var(--green);
  box-shadow: 0 24px 60px rgba(5,168,87,.15);
  transform: translateY(-8px);
}
.badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--yellow);
  color: var(--navy);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 950;
}
.price-top span {
  color: var(--green);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .78rem;
}
.price-top strong { display: block; font-size: 1.7rem; letter-spacing: -.05em; color: var(--navy); }
.price-card p { color: var(--muted); margin: 0; }
.price-card ul { padding: 0; margin: 0; list-style: none; display: grid; gap: 10px; }
.price-card li { color: #35455B; font-weight: 700; }
.price-card li::before { content: "✓"; color: var(--green); font-weight: 950; margin-right: 8px; }
.price-card .btn { margin-top: auto; }

.dashboard-grid { grid-template-columns: .9fr 1.1fr; }
.kpi-row {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 12px;
  margin-top: 28px;
}
.kpi-row div {
  border-radius: 22px;
  padding: 18px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.14);
}
.kpi-row strong { display: block; color: var(--yellow); }
.kpi-row span { color: rgba(255,255,255,.72); font-size: .9rem; }

.faq-section { background: #fff; overflow: hidden; }
.faq-section::before { width: 360px; height: 360px; right: -140px; bottom: -160px; }
.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}
details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  padding: 0 22px;
}
summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 0;
  font-weight: 900;
  color: var(--navy);
}
summary::-webkit-details-marker { display: none; }
details p { color: var(--muted); margin: -4px 0 20px; }

.cta-section {
  padding: 96px 0;
  background:
    radial-gradient(circle at 90% 0%, rgba(255,201,40,.24), transparent 24%),
    linear-gradient(135deg, var(--navy) 0%, #04152A 100%);
}
.cta-card {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 34px;
  align-items: start;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 38px;
  padding: 36px;
  color: #fff;
  box-shadow: 0 24px 70px rgba(0,0,0,.22);
}
.cta-card h2 { color: #fff; }
.cta-card p { color: rgba(255,255,255,.76); }
.demo-form {
  background: #fff;
  border-radius: 28px;
  padding: 24px;
  display: grid;
  gap: 14px;
  box-shadow: var(--shadow);
}
.demo-form label { color: var(--navy); font-weight: 850; font-size: .9rem; display: grid; gap: 7px; }
.demo-form input,
.demo-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
  outline: 0;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.demo-form textarea { min-height: 104px; resize: vertical; }
.demo-form input:focus,
.demo-form textarea:focus { border-color: var(--green); box-shadow: 0 0 0 4px rgba(5,168,87,.12); }
.demo-form small { color: var(--muted); }

.site-footer {
  background: #04152A;
  color: rgba(255,255,255,.72);
  padding: 34px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.footer-brand { color: #fff; }
.footer-brand img { width: 40px; height: 40px; }
.footer-links { display: flex; gap: 18px; font-weight: 800; }
.footer-links a { color: var(--yellow); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .22s; }

@media (max-width: 1050px) {
  .modules-grid { grid-template-columns: repeat(3, 1fr); }
  .flow { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 860px) {
  .nav-toggle { display: inline-grid; place-items: center; }
  .nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 78px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .nav a { padding: 10px 12px; }
  .nav-cta { text-align: center; }
  .hero-grid, .split, .feature-row, .business-grid, .dashboard-grid, .solution-grid, .cta-card { grid-template-columns: 1fr; }
  .hero-visual { min-height: auto; }
  .hero-visual .blob { width: 300px; height: 300px; }
  .card-one { left: 10px; top: 12px; }
  .card-two { right: 10px; bottom: 16px; }
  .hero-metrics, .kpi-row { grid-template-columns: 1fr; }
  .modules-grid, .business-cards, .pricing-grid, .solution-cards { grid-template-columns: 1fr; }
  .flow { grid-template-columns: 1fr; }
  .feature-row.reverse .visual-card { order: 0; }
  .price-card.featured { transform: none; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; justify-items: center; }
}

@media (max-width: 520px) {
  .container { width: min(100% - 28px, var(--max)); }
  .section { padding: 70px 0; }
  .hero { padding: 54px 0 56px; }
  .hero h1 { font-size: clamp(2.6rem, 15vw, 4rem); }
  .section-head h2, .split h2, .feature-copy h2, .solution-grid h2, .business-grid h2, .dashboard-grid h2, .cta-card h2 { font-size: 2.15rem; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .floating-card { display: none; }
  .visual-card, .hero-visual img { border-radius: 26px; }
  .cta-card { padding: 22px; border-radius: 30px; }
  .footer-links { flex-direction: column; gap: 8px; }
}
