:root {
  --primary: #f60001;
  --primary-dark: #e00001;
  --secondary: #01933e;
  --accent: #ff9f1c;
  --orange: #ff6b35;
  --green: #12b886;
  --purple: #ed3b3c;
  --dark: #071b3a;
  --ink: #13213a;
  --muted: #64748b;
  --soft: #fff3f3;
  --soft2: #ecfbff;
  --line: #dce8ff;
  --white: #fff;
  --shadow: 0 18px 55px rgba(7, 27, 58, 0.11);
  --shadow-sm: 0 10px 28px rgba(7, 27, 58, 0.08);
  --radius: 24px;
  --radius-sm: 16px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.65;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}
.narrow {
  max-width: 860px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  height: 82px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  display: contents;
  align-items: center;
  min-width: 210px;
}
.brand-logo {
  width: 80px;
  height: auto;
  object-fit: contain;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
  justify-content: center;
  font-size: 14px;
  font-weight: 750;
  color: #172340;
}
.main-nav > a,
.nav-item > button {
  border: 0;
  background: transparent;
  font: inherit;
  color: inherit;
  cursor: pointer;
  padding: 28px 4px;
}
.has-menu {
  position: relative;
}
.has-menu > button:after {
  content: "▾";
  font-size: 14px;
  margin-left: 6px;
  color: var(--muted);
}
.mega {
  display: none;
  position: absolute;
  top: 78px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 250px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 14px;
  z-index: 10;
}
.mega.grid-2 {
  grid-template-columns: 1fr 1fr;
  min-width: 520px;
}
.has-menu:hover .mega {
  display: grid;
}
.mega a {
  display: block;
  padding: 10px 13px;
  border-radius: 12px;
  color: #233557;
}
.mega a:hover {
  background: var(--soft);
  color: var(--primary);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 12px;
  padding: 13px 20px;
  font-weight: 800;
  font-size: 14px;
  border: 1px solid transparent;
  transition: 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  box-shadow: 0 12px 25px rgba(245, 1, 0, 0.22);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(245, 1, 0, 0.28);
}
.btn-secondary,
.btn-ghost {
  border-color: #ffbcbc;
  color: var(--primary);
  background: #fff;
}
.btn-secondary:hover,
.btn-ghost:hover {
  background: var(--soft);
}
.btn-green {
  background: var(--green);
  color: white;
}
.btn-purple {
  background: var(--purple);
  color: white;
}
.btn-orange {
  background: linear-gradient(135deg, var(--accent), var(--orange));
  color: white;
}
.btn-light {
  background: #fff;
  color: var(--primary);
}
.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}
.nav-toggle {
  display: none;
  border: 0;
  background: #fff;
  width: 45px;
  height: 45px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--dark);
  width: 22px;
  margin: 5px auto;
}
.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(
      circle at 85% 12%,
      rgba(0, 184, 217, 0.14),
      transparent 36%
    ),
    linear-gradient(180deg, #fff 0%, #f7fbff 100%);
  padding: 80px 0;
}
.hero:before {
  content: "";
  position: absolute;
  right: -120px;
  top: 110px;
  width: 360px;
  height: 360px;
  background: linear-gradient(
    135deg,
    rgba(10, 76, 255, 0.13),
    rgba(0, 184, 217, 0.07)
  );
  border-radius: 50%;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.04fr;
  gap: 54px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero h1 {
  font-size: clamp(42px, 5vw, 74px);
  line-height: 1.03;
  margin: 12px 0 20px;
  color: var(--dark);
  letter-spacing: -2px;
}
.inner-hero h1 {
  font-size: clamp(38px, 4.2vw, 64px);
}
.hero p {
  font-size: 18px;
  color: #42526f;
  max-width: 680px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
  font-weight: 900;
  font-size: 12px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 30px 0;
}
.proof-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 22px;
  color: #475569;
  font-size: 14px;
}
.device-combo {
  position: relative;
  min-height: 460px;
}
.laptop {
  position: absolute;
  right: 90px;
  top: 0;
  width: 90%;
  filter: drop-shadow(0 30px 60px rgba(7, 27, 58, 0.18));
}
.screen {
  background: #fff;
  border: 14px solid #121926;
  border-radius: 26px;
  overflow: hidden;
}
.tablet {
  position: absolute;
  right: 15px;
  bottom: 35px;
  width: 190px;
  height: 280px;
  background: #17213b;
  border: 10px solid #0a1124;
  border-radius: 24px;
  padding: 12px;
  box-shadow: var(--shadow);
}
.phone {
  position: absolute;
  right: 0;
  top: 190px;
  width: 105px;
  height: 210px;
  background: #0b1225;
  border: 8px solid #0b1225;
  border-radius: 26px;
  padding: 10px;
  box-shadow: var(--shadow);
}
.mini-pos {
  height: 100%;
  background: #fff;
  border-radius: 14px;
  padding: 12px;
  color: var(--dark);
  font-size: 12px;
}
.mini-pos span {
  font-weight: 800;
}
.mini-pos .tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin: 12px 0;
}
.mini-pos i {
  height: 38px;
  background: linear-gradient(135deg, #edf5ff, #dffcff);
  border-radius: 8px;
}
.mini-pos strong {
  display: block;
  font-size: 22px;
}
.mini-pos button {
  width: 100%;
  background: var(--primary);
  color: white;
  border: 0;
  border-radius: 10px;
  padding: 9px;
  margin-top: 8px;
  font-weight: 800;
}
.phone-ui {
  background: #fff;
  border-radius: 18px;
  height: 100%;
  padding: 12px;
}
.phone-ui small,
.phone-ui em {
  display: block;
  color: var(--muted);
}
.phone-ui strong {
  display: block;
  font-size: 20px;
  color: var(--dark);
}
.spark {
  height: 42px;
  margin-top: 16px;
  background: linear-gradient(
    135deg,
    rgba(10, 76, 255, 0.14),
    rgba(0, 184, 217, 0.25)
  );
  border-radius: 12px;
  position: relative;
}
.spark:after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  top: 24px;
  height: 3px;
  background: var(--primary);
  transform: skewY(-16deg);
  border-radius: 5px;
}
.dash-svg {
  width: 100%;
  height: auto;
}
.section {
  padding: 86px 0;
}
.section.alt {
  background: linear-gradient(180deg, #f8fbff, #fff);
}
.center-intro {
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  padding: 34px 0;
}
.center-intro h2 {
  margin: 0 0 8px;
  color: var(--dark);
  font-size: 26px;
}
.center-intro p {
  margin: 0 auto;
  max-width: 850px;
  color: #53627d;
}
.section-head {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 42px;
}
.section-head h2,
.panel h2,
.narrow h2 {
  font-size: clamp(32px, 3.3vw, 48px);
  line-height: 1.12;
  color: var(--dark);
  margin: 10px 0 16px;
  letter-spacing: -1px;
}
.section-head p,
.panel p,
.narrow p {
  color: #53627d;
}
.lead {
  font-size: 20px;
  color: #32425f !important;
}
.cards {
  display: grid;
  gap: 20px;
}
.cards.three {
  grid-template-columns: repeat(3, 1fr);
}
.cards.four {
  grid-template-columns: repeat(4, 1fr);
}
.cards.five {
  grid-template-columns: repeat(5, 1fr);
}
.cards.six {
  grid-template-columns: repeat(6, 1fr);
}
.cards.seven {
  grid-template-columns: repeat(4, 1fr);
}
.feature-grid {
  display: grid;
  gap: 20px;
}
.feature-card {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 24px;
  box-shadow: 0 4px 18px rgba(7, 27, 58, 0.04);
  transition: 0.2s ease;
  min-height: 170px;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
  border-color: #bcd4ff;
}
.feature-card h3 {
  margin: 14px 0 8px;
  color: var(--dark);
  line-height: 1.2;
  font-size: 20px;
}
.feature-card p {
  margin: 0;
  color: #58667f;
  font-size: 14.5px;
}
.icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 10px 22px rgba(10, 76, 255, 0.18);
}
.feature-card:nth-child(4n + 2) .icon-badge {
  background: linear-gradient(135deg, var(--green), #34d399);
}
.feature-card:nth-child(4n + 3) .icon-badge {
  background: linear-gradient(135deg, var(--purple), #a78bfa);
}
.feature-card:nth-child(4n + 4) .icon-badge {
  background: linear-gradient(135deg, var(--accent), var(--orange));
}
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}
.reverse {
  direction: rtl;
}
.reverse > * {
  direction: ltr;
}
.panel,
.form-panel,
.stats-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.visual-panel {
  background: linear-gradient(135deg, #f9fcff, #eef9ff);
  overflow: hidden;
}
.check-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}
.check-list li {
  position: relative;
  padding-left: 30px;
  margin: 12px 0;
  color: #34445f;
}
.check-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: 900;
}
.metric-board {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.metric-row b {
  display: block;
  font-size: 34px;
  color: var(--dark);
}
.metric-row span {
  color: var(--green);
  font-weight: 800;
}
.bars {
  height: 170px;
  display: flex;
  gap: 16px;
  align-items: end;
  margin: 26px 0;
}
.bars i {
  flex: 1;
  background: linear-gradient(180deg, var(--primary), var(--secondary));
  border-radius: 10px 10px 0 0;
}
.dark-section {
  background: linear-gradient(135deg, #061936, #082b63);
  color: #fff;
}
.dark-section .section-head h2,
.dark-section .section-head p,
.dark-section .eyebrow {
  color: #fff;
}
.dark-cards .feature-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}
.dark-cards .feature-card h3,
.dark-cards .feature-card p {
  color: #fff;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.pricing-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.pricing-card h3 {
  font-size: 25px;
  color: var(--dark);
  margin: 14px 0 6px;
}
.pricing-card p {
  color: #53627d;
  min-height: 76px;
}
.price {
  margin: 12px 0 18px;
}
.price strong {
  font-size: 42px;
  color: var(--dark);
}
.price span {
  color: var(--muted);
  margin-left: 6px;
}
.pricing-card ul {
  padding: 0;
  margin: 0 0 22px;
  list-style: none;
  flex: 1;
}
.pricing-card li {
  padding: 7px 0 7px 28px;
  position: relative;
}
.pricing-card li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 900;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testimonial {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 30px;
  box-shadow: var(--shadow-sm);
}
.quote-mark {
  font-size: 54px;
  color: var(--secondary);
  line-height: 1;
}
.testimonial p {
  font-size: 17px;
  color: #34445f;
}
.testimonial h4 {
  margin: 18px 0 2px;
  color: var(--dark);
}
.testimonial span {
  color: var(--muted);
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.faq-grid.one-col {
  grid-template-columns: 1fr;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
}
.faq-item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  background: #fff;
  border: 0;
  padding: 20px;
  font-weight: 900;
  color: var(--dark);
  cursor: pointer;
  font-size: 16px;
}
.faq-item div {
  display: none;
  padding: 0 20px 20px;
  color: #53627d;
}
.faq-item.active div {
  display: block;
}
.faq-item.active span {
  transform: rotate(45deg);
}
.cta-band {
  padding: 0 0 80px;
  background: linear-gradient(180deg, #fff, #f6fbff);
}
.cta-inner {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 28px;
  padding: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: #fff;
  box-shadow: 0 25px 70px rgba(10, 76, 255, 0.25);
  position: relative;
  overflow: hidden;
}
.cta-inner:after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 260px;
  height: 260px;
  border: 38px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}
.cta-inner h2 {
  font-size: 34px;
  margin: 0 0 8px;
}
.cta-inner p {
  margin: 0;
  max-width: 680px;
  opacity: 0.92;
}
.cta-actions {
  display: flex;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.workflow {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.workflow div {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.workflow b {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
}
.workflow h3 {
  color: var(--dark);
}
.usecase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.usecase-grid div {
  border-left: 4px solid var(--primary);
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.stats-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.stats-panel div {
  background: var(--soft);
  border-radius: 18px;
  padding: 24px;
  text-align: center;
}
.stats-panel strong {
  display: block;
  font-size: 42px;
  color: var(--primary);
}
.stats-panel span {
  color: #53627d;
  font-weight: 800;
}
.demo-form label {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  font-weight: 800;
  color: #25344f;
  gap: 7px;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.form-grid .full {
  grid-column: 1/-1;
}
input,
select,
textarea {
  width: 100%;
  border: 1px solid #cfe0ff;
  border-radius: 12px;
  padding: 14px 13px;
  font: inherit;
  color: #172340;
  background: #fff;
}
textarea {
  min-height: 120px;
  resize: vertical;
}
.demo-form .btn {
  width: 100%;
  margin-top: 16px;
}
.mini-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 20px;
}
.mini-stats b {
  font-size: 28px;
  color: var(--primary);
}
.mini-stats span {
  font-size: 13px;
  color: var(--muted);
}
.footer-trust {
  background: #071b3a;
  color: #fff;
  padding: 34px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.trust-grid div {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  padding-left: 18px;
}
.trust-grid strong {
  display: block;
}
.trust-grid span {
  font-size: 13px;
  color: #b8c7df;
}
.site-footer {
  background: #051329;
  color: #fff;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.4fr repeat(5, 1fr);
  gap: 28px;
  padding: 54px 0;
}
.footer-brand .brand-logo {
  filter: none;
  background: #fff;
  border-radius: 14px;
  padding: 6px;
}
.footer-brand p {
  color: #b8c7df;
}
.socials {
  display: flex;
  gap: 8px;
}
.socials span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.footer-col h4 {
  margin: 0 0 12px;
  color: #fff;
}
.footer-col a {
  display: block;
  color: #c4d1e8;
  margin: 7px 0;
  font-size: 14px;
}
.footer-col p {
  color: #c4d1e8;
  font-size: 14px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  color: #b8c7df;
  font-size: 14px;
}
.card-visual {
  padding: 18px;
}
.hero-visual {
  position: relative;
  z-index: 1;
}
.form-panel {
  padding: 28px;
}
@media (max-width: 1100px) {
  .cards.five,
  .cards.six,
  .cards.seven,
  .cards.four,
  .pricing-grid,
  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }
  .workflow {
    grid-template-columns: repeat(3, 1fr);
  }
  .device-combo {
    min-height: 420px;
  }
  .laptop {
    width: 520px;
    right: 40px;
  }
  .tablet {
    right: 0;
  }
  .main-nav,
  .nav-actions {
    display: none;
  }
  .nav-toggle {
    display: block;
    margin-left: auto;
  }
  .main-nav.open {
    height: 85vh;
    overflow: auto;
    display: inline-block;
    position: absolute;
    top: 82px;
    left: 5px;
    right: 5px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
  }
  .main-nav.open .nav-item > button,
  .main-nav.open > a {
    padding: 12px;
  }
  .main-nav.open .mega {
    position: static;
    transform: none;
    display: grid;
    box-shadow: none;
    border: 0;
    min-width: auto;
    padding: 6px;
    background: var(--soft);
  }
}
@media (max-width: 820px) {
  .hero-grid,
  .split-grid,
  .testimonial-grid,
  .faq-grid,
  .trust-grid,
  .usecase-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    padding: 55px 0;
  }
  .hero h1 {
    font-size: 42px;
  }
  .device-combo {
    display: none;
  }
  .cards.three,
  .cards.four,
  .cards.five,
  .cards.six,
  .cards.seven,
  .pricing-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }
  .workflow {
    grid-template-columns: 1fr;
  }
  .cta-inner,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .stats-panel {
    grid-template-columns: 1fr;
  }
  .brand {
    min-width: auto;
  }
  .brand-logo {
    width: 80px;
  }
  .container {
    width: min(100% - 28px, 1180px);
  }
}
