:root {
  --black: #091343;
  --dark: #111111;
  --gray: #3270a3;
  --light-gray: #f5f5f5;
  --border: #e5e5e5;
  --white: #ffffff;
  --radius: 28px;
  --shadow: 0 25px 70px rgba(0, 0, 0, .12);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Inter, Arial, Helvetica, sans-serif;
  background: #f4f4f4;
  color: var(--black);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  max-width: 1680px;
  margin: 0 auto;
  background: var(--white);
}

.container {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 54px;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  height: 120px;
  width: auto;
  display: block;
}



.nav-shell {
  height: 92px;
  background: #091343;
  color: #fff;
  border-bottom-left-radius: 46px;
  border-bottom-right-radius: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 42px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .22);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 300px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border: 2px solid #fff;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 22px;
}

.brand-title {
  font-size: 29px;
  font-weight: 850;
  letter-spacing: -1px;
  line-height: 1;
}

.brand-subtitle {
  font-size: 11px;
  color: #cfcfcf;
  margin-top: 5px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-item {
  position: relative;
  font-size: 15px;
  font-weight: 650;
  padding: 34px 0;
}

.nav-item:hover .mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.chevron {
  font-size: 10px;
  margin-left: 5px;
}

.mega {
  position: absolute;
  top: 82px;
  left: -28px;
  width: 280px;
  background: #091343;
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 20px;
  padding: 14px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: .22s ease;
  box-shadow: 0 25px 60px rgba(0, 0, 0, .28);
  z-index: 20;
}

.mega a {
  display: block;
  padding: 13px 15px;
  border-radius: 12px;
  color: #f2f2f2;
  font-size: 14px;
}

.mega a:hover {
  background: rgba(255, 255, 255, .09);
}

.nav-actions {
  display: flex;
  gap: 16px;
  min-width: 300px;
  justify-content: flex-end;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-weight: 750;
  font-size: 15px;
  transition: .2s ease;
}

.btn-demo {
  border: 1px solid rgba(255, 255, 255, .75);
  color: #fff;
  padding: 14px 34px;
}

.btn-demo:hover {
  background: #fff;
  color: #000;
}

.btn-buy {
  background: #fff;
  color: #000;
  padding: 14px 30px;
}

.btn-buy:hover {
  background: #dedede;
}

/* HERO */

.hero {
  padding: 90px 0 70px;

  background:
    radial-gradient(circle at 75% 20%, rgba(9, 19, 67, .18), transparent 45%),
    linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  align-items: center;
  gap: 70px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #050505;
  color: #fff;
  padding: 10px 17px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .18);
}

h1 {
  font-size: clamp(46px, 5vw, 76px);
  line-height: .98;
  letter-spacing: -4px;
  margin-bottom: 28px;
}

.lead {
  font-size: 22px;
  color: #222;
  max-width: 760px;
  margin-bottom: 32px;
}

.hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin: 34px 0;
}

.check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 750;
}

.check span {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #050505;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 14px;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.primary {
  background: #050505;
  color: #fff;
  padding: 18px 32px;
}

.secondary {
  border: 1px solid #111;
  color: #111;
  padding: 18px 32px;
}

.mockup-wrap {
  position: relative;
}

.dashboard {
  background: #fff;
  border: 10px solid #111;
  border-radius: 28px;
  min-height: 430px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.dashboard-top {
  height: 58px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 24px;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  background: #111;
  border-radius: 50%;
  opacity: .25;
}

.dashboard-body {
  display: grid;
  grid-template-columns: 210px 1fr;
  min-height: 372px;
}

.sidebar {
  background: linear-gradient(180deg, #111, #1c1c1c);
  color: #fff;

  padding: 24px;
}

.side-item {
  padding: 12px 14px;
  border-radius: 12px;
  margin-bottom: 8px;
  background: rgba(255, 255, 255, .08);
  font-size: 14px;
}

.content {
  padding: 26px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}

.stat {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
}

.stat small {
  color: #777;
  font-size: 12px;
}

.stat strong {
  display: block;
  font-size: 24px;
  margin-top: 8px;
}

.doc-row {
  display: grid;
  grid-template-columns: 1fr 100px 90px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.phone {
  position: absolute;
  right: -18px;
  bottom: -32px;
  width: 170px;
  background: #fff;
  border: 8px solid #111;
  border-radius: 32px;
  padding: 22px 14px;
  box-shadow: var(--shadow);
}

.upload-box {
  border: 2px dashed #ccc;
  border-radius: 18px;
  height: 140px;
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
}

.qr {
  width: 74px;
  height: 74px;
  margin: 18px auto 0;
  background: linear-gradient(90deg, #000 10px, transparent 10px) 0 0/18px 18px,
    linear-gradient(#000 10px, transparent 10px) 0 0/18px 18px,
    #fff;
  border: 6px solid #fff;
  outline: 1px solid #ddd;
}

/* FEATURE STRIP */

.feature-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #fff;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.strip-item {
  padding: 32px 22px;
  border-right: 1px solid var(--border);
}

.strip-item:last-child {
  border-right: none;
}

.icon {
  font-size: 34px;
  margin-bottom: 12px;
}

.strip-item h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.strip-item p {
  color: #555;
  font-size: 14px;
}

section {
  padding: 96px 0;
}

.section-head {
  max-width: 860px;
  margin-bottom: 48px;
}

h2 {
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.05;
  letter-spacing: -2.2px;
  margin-bottom: 20px;
}

.section-head p {
  font-size: 20px;
  color: #444;
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, .04);
}

.card h3 {
  font-size: 24px;
  margin-bottom: 14px;
  letter-spacing: -.6px;
}

.card p {
  color: #444;
}

.dark-section {
  background: #253383;
  color: #fff;
}

.dark-section p {
  color: #d6d6d6;
}

.workflow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.step {
  background: #0a044e;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 24px;
  padding: 28px;
}

.step-number {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  color: #000;
  display: grid;
  place-items: center;
  font-weight: 900;
  margin-bottom: 20px;
}

.step h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.pricing {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.price-card {
  border: 1px solid var(--border);
  border-radius: 34px;
  padding: 40px;
  background: #fff;
  box-shadow: var(--shadow);
}

.price-card.dark {
  background: #253383;
  color: #fff;
}

.price {
  font-size: 56px;
  font-weight: 900;
  letter-spacing: -2px;
  margin: 20px 0 6px;
}

.price-note {
  color: #777;
  margin-bottom: 26px;
}

.price-card.dark .price-note {
  color: #cfcfcf;
}

.list {
  list-style: none;
}

.list li {
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
}

.price-card.dark .list li {
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.faq {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 28px;
  background: #fff;
}

footer {
  background: #050505;
  color: #fff;
  padding: 70px 0 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 36px;
  margin-bottom: 50px;
}

.footer-brand {
  max-width: 380px;
}

.footer-grid h4 {
  margin-bottom: 18px;
}

.footer-grid ul {
  list-style: none;
}

.footer-grid li {
  margin-bottom: 10px;
  color: #cfcfcf;
  font-size: 14px;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, .15);
  padding-top: 24px;
  color: #aaa;
  font-size: 14px;
}

@media (max-width: 1200px) {
  .main-nav {
    display: none;
  }

  .hero-grid,
  .cards-3,
  .pricing,
  .faq,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .workflow {
    grid-template-columns: 1fr;
  }

  .phone {
    position: relative;
    right: auto;
    bottom: auto;
    margin: 28px auto 0;
  }
}

@media (max-width: 700px) {
  .container {
    padding: 0 22px;
  }

  .nav-actions {
    display: none;
  }
}

.site-header {
  padding: 16px 12px 0;
}

.nav-shell {
  height: auto;
  padding: 22px;
  border-radius: 0 0 28px 28px;
}

.brand-title {
  font-size: 24px;
}

h1 {
  letter-spacing: -2px;
}

.hero {
  padding-top: 58px;
}

.dashboard-body {
  grid-template-columns: 1fr;
}

.sidebar {
  display: none;
}

.stats {
  grid-template-columns: 1fr 1fr;
}

.strip-grid {
  grid-template-columns: 1fr;
}

.icon {
  width: 64px;
  height: 64px;

  margin-bottom: 18px;

  border-radius: 18px;

  background: #eef4ff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 30px;

  transition: .25s;
}

.strip-item:hover .icon {

  transform: translateY(-4px);

  background: #2563EB;

  color: #fff;

}

/* ==========================
   HERO SCREENSHOT
========================== */


.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  width: 55%;
  max-width: 520px;
  height: auto;
  border-radius: 22px;
  border: 1px solid #d9d9d9;
  box-shadow: 0 25px 60px rgba(15, 23, 42, .16);
  transition: .3s;
}

.hero-image img:hover {
  transform: translateY(-4px);
  box-shadow: 0 35px 70px rgba(15, 23, 42, .20);
}

.hero .container {
  max-width: 1200px;
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-content {

  max-width: 900px;
  width: 100%;

  margin: 0 auto 60px;

  text-align: center;

}

.hero h1 {

  max-width: 900px;

  margin: 30px auto;

  text-align: center;

}

.hero .lead {

  max-width: 850px;

  margin: 0 auto 40px;

  text-align: center;

}

.hero-checks {

  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;

  margin: 35px 0;

}

.hero-buttons {

  display: flex;
  justify-content: center;
  gap: 20px;

  margin-bottom: 50px;

}