:root {
  --brand: #1d4ed8;        /* royal blue — primary */
  --brand-deep: #0b1f4d;   /* midnight navy */
  --brand-2: #2563eb;      /* blue */
  --cyan: #22d3ee;         /* bright cyan accent */
  --ink: #0d1428;
  --body: #475069;
  --muted: #818aa3;
  --line: #e6e9f2;
  --bg: #ffffff;
  --tint: #f4f7fc;
  --hero-grad: linear-gradient(125deg, #081229 0%, #102a63 30%, #1e50d4 64%, #0ea5e9 100%);
  --radius: 18px;
  --shadow: 0 24px 60px rgba(11, 31, 77, 0.20);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--body);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
h1, h2, h3 { color: var(--ink); letter-spacing: -0.025em; font-weight: 800; line-height: 1.08; margin: 0; }
.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 28px; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700; font-size: 0.96rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .16s ease, box-shadow .2s ease, background .2s, color .2s, border-color .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn--white { background: #fff; color: var(--brand); box-shadow: 0 10px 30px rgba(0,0,0,.12); }
.btn--white:hover { box-shadow: 0 16px 38px rgba(0,0,0,.18); }
.btn--ghost-light { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.45); }
.btn--ghost-light:hover { background: rgba(255,255,255,.16); }
.btn--solid { background: var(--brand); color: #fff; box-shadow: 0 12px 28px rgba(109,40,217,.32); }
.btn--solid:hover { background: #1a43b8; }
.btn--lg { padding: 16px 32px; font-size: 1.02rem; }

/* NAV */
.nav {
  position: absolute; top: 0; left: 0; right: 0; z-index: 30;
}
.nav__inner { display: flex; align-items: center; gap: 28px; height: 88px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.2rem; color: #fff; }
.brand__logo {
  display: grid; place-items: center;
  width: 34px; height: 34px; border-radius: 9px;
  background: #fff; color: var(--brand);
  font-weight: 800; font-size: 0.95rem;
}
.nav__links { display: flex; gap: 30px; margin-left: 14px; margin-right: auto; }
.nav__links a { color: rgba(255,255,255,.82); font-weight: 600; font-size: 0.96rem; transition: color .18s; }
.nav__links a:hover { color: #fff; }

/* HERO */
.hero {
  position: relative;
  background: var(--hero-grad);
  padding: 150px 0 0;
  overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 18%, rgba(255,255,255,.16), transparent 42%);
  pointer-events: none;
}
.hero__grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 48px; align-items: center;
  padding-bottom: 70px;
}
.pill-tag {
  display: inline-block;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.28);
  color: #fff;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.04em;
  padding: 7px 15px; border-radius: 999px; margin-bottom: 24px;
}
.hero h1 { color: #fff; font-size: clamp(2.6rem, 5.4vw, 4.1rem); }
.hero h1 em { font-style: italic; font-weight: 800; }
.hero__sub { color: rgba(255,255,255,.86); font-size: 1.17rem; max-width: 540px; margin: 24px 0 34px; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* HERO MOCKUP */
.hero__visual { position: relative; }
.mock {
  background: #fff; border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: rotate(0.4deg);
}
.mock__bar { display: flex; align-items: center; gap: 7px; padding: 13px 16px; background: #f1eef9; border-bottom: 1px solid var(--line); }
.dot { width: 11px; height: 11px; border-radius: 50%; background: #d4cdec; }
.dot:nth-child(1){ background:#ff5f57 } .dot:nth-child(2){ background:#febc2e } .dot:nth-child(3){ background:#28c840 }
.mock__title { margin-left: 10px; font-size: 0.82rem; font-weight: 700; color: var(--muted); }
.mock__body { display: grid; grid-template-columns: 54px 1fr; min-height: 300px; }
.mock__side { background: #faf9fe; border-right: 1px solid var(--line); padding: 18px 0; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.ms-row { width: 22px; height: 22px; border-radius: 7px; background: #e7e2f5; }
.ms-row.on { background: var(--brand); }
.mock__main { padding: 20px; display: flex; flex-direction: column; gap: 12px; }
.mock__card { border-radius: 12px; padding: 16px; background: #f7f5fc; display: flex; flex-direction: column; gap: 7px; }
.mock__card--accent { background: linear-gradient(120deg, #1d4ed8, #0ea5e9); }
.mock__k { font-size: 0.72rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: rgba(255,255,255,.8); }
.mock__v { font-size: 1.15rem; font-weight: 800; color: #fff; }
.mock__bar-mini { height: 7px; border-radius: 999px; background: rgba(255,255,255,.25); overflow: hidden; }
.mock__bar-mini i { display: block; height: 100%; background: #fff; border-radius: 999px; }
.mock__row { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; font-weight: 600; color: var(--ink); padding: 4px 2px; }
.mock__row--ghost { color: var(--muted); font-weight: 500; }
.tick { display: grid; place-items: center; width: 20px; height: 20px; border-radius: 50%; background: #e6f8ee; color: #16a34a; font-size: 0.72rem; font-weight: 800; }
.tick--soft { background: #ece9f3; color: var(--brand); }
.float-card {
  position: absolute; left: -26px; bottom: 36px;
  background: #fff; border-radius: 14px; padding: 14px 18px;
  box-shadow: 0 16px 40px rgba(22,18,31,.2);
  display: flex; flex-direction: column;
}
.float-card__num { font-weight: 800; font-size: 1.25rem; color: var(--brand); }
.float-card__label { font-size: 0.78rem; color: var(--muted); font-weight: 600; }

/* LOGO CLOUD */
.logos { position: relative; z-index: 2; padding: 6px 28px 56px; text-align: center; }
.logos__label { color: rgba(255,255,255,.66); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; margin: 0 0 22px; }
.logos__row { display: flex; flex-wrap: wrap; justify-content: center; gap: 44px; }
.logos__row span { color: rgba(255,255,255,.7); font-weight: 800; font-size: 1.3rem; letter-spacing: -0.02em; }

/* SECTIONS */
.section { padding: 100px 0; }
.section--tint { background: var(--tint); }
.section__head { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.eyebrow { display: inline-block; color: var(--brand); font-weight: 800; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 14px; }
.section__head h2 { font-size: clamp(2rem, 4vw, 2.9rem); }
.section__head p { color: var(--muted); font-size: 1.12rem; margin: 16px 0 0; }

/* FEATURE CARDS */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.feature {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 30px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s;
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.feature--pop { background: linear-gradient(160deg, #f7f5fc, #fff); border-color: #e3dcf6; }
.feature__icon {
  display: grid; place-items: center; width: 52px; height: 52px;
  border-radius: 14px; background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff; margin-bottom: 20px;
}
.feature__icon svg { width: 26px; height: 26px; }
.feature h3 { font-size: 1.4rem; margin-bottom: 10px; }
.feature p { margin: 0 0 18px; color: var(--body); font-size: 0.98rem; }
.mini { list-style: none; margin: 0; padding: 0; }
.mini li { position: relative; padding-left: 24px; font-size: 0.93rem; font-weight: 600; color: var(--ink); margin-bottom: 9px; }
.mini li::before { content: "✓"; position: absolute; left: 0; color: var(--brand); font-weight: 800; }

/* STEPS */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; }
.step__n { font-size: 2rem; font-weight: 800; background: linear-gradient(120deg, var(--brand), var(--cyan)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.step h3 { font-size: 1.25rem; margin: 12px 0 8px; }
.step p { margin: 0; color: var(--muted); font-size: 0.95rem; }

/* SPLIT / WHY */
.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; }
.split__text h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); margin-bottom: 18px; }
.split__text > p { color: var(--body); font-size: 1.08rem; }
.checklist { list-style: none; margin: 24px 0 30px; padding: 0; }
.checklist li { position: relative; padding-left: 34px; margin-bottom: 14px; font-weight: 600; color: var(--ink); }
.checklist li::before {
  content: "✓"; position: absolute; left: 0; top: -1px;
  width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: #fff;
  display: grid; place-items: center; font-size: 0.72rem; font-weight: 800;
}
.split__panel { }
.quote {
  background: linear-gradient(150deg, #0b1f4d, #1e50d4);
  border-radius: 24px; padding: 40px;
  color: #fff; box-shadow: var(--shadow);
}
.quote p { font-size: 1.32rem; font-weight: 700; line-height: 1.4; letter-spacing: -0.01em; margin: 0 0 26px; color: #fff; }
.quote__by { display: flex; align-items: center; gap: 14px; font-size: 0.92rem; color: rgba(255,255,255,.86); }
.quote__avatar { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.18); font-weight: 800; font-size: 1.05rem; color: #fff; }

/* CTA BAND */
.cta-band { background: var(--hero-grad); padding: 96px 0; text-align: center; position: relative; overflow: hidden; }
.cta-band::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 0%, rgba(255,255,255,.16), transparent 55%); }
.cta-band__inner { position: relative; z-index: 2; max-width: 700px; }
.cta-band h2 { color: #fff; font-size: clamp(2rem, 4vw, 2.9rem); }
.cta-band p { color: rgba(255,255,255,.88); font-size: 1.15rem; margin: 18px 0 32px; }
.cta-band__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-band__note { font-size: 0.95rem; margin: 26px 0 0; color: rgba(255,255,255,.78); }
.cta-band__note a { color: #fff; font-weight: 700; border-bottom: 1px solid rgba(255,255,255,.5); padding-bottom: 1px; }

/* FOOTER */
.footer { background: #0b1224; padding: 40px 0; }
.footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer .brand { color: #fff; }
.footer__meta { color: rgba(255,255,255,.55); font-size: 0.88rem; }

/* RESPONSIVE */
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; gap: 56px; }
  .hero__visual { max-width: 460px; }
  .cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .nav__links { display: none; }
}
@media (max-width: 560px) {
  .hero { padding-top: 116px; }
  .steps { grid-template-columns: 1fr; }
  .float-card { left: 8px; }
  .footer__inner { flex-direction: column; align-items: flex-start; gap: 8px; }
}
