:root {
  --blue: #185c8f;
  --blue-700: #124a74;
  --blue-soft: #d9edff;
  --ink: #17232c;
  --muted: #55646f;
  --line: #d9e1e6;
  --bg: #f6f8fa;
  --surface: #fff;
  --teal: #007c78;
  --teal-soft: #d7f3f2;
  --open: #c62828;
  --progress: #b7791f;
  --closed: #27864a;
  --r: 18px;
  --shadow: 0 10px 28px #1c394214;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font:
    16px/1.55 Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
.wrap {
  width: min(1160px, calc(100% - 40px));
  margin: auto;
}
.top {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #fffffff2;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.nav {
  height: 72px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--blue);
  white-space: nowrap;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--blue);
  color: #fff;
  font-size: 20px;
}
.nav-links {
  display: flex;
  gap: 20px;
  margin-left: auto;
  font-size: 14px;
  color: #44545e;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--blue);
  font-weight: 700;
}
.lang {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 9px;
  overflow: hidden;
}
.lang button {
  border: 0;
  background: #fff;
  padding: 7px 9px;
  color: var(--muted);
  cursor: pointer;
}
.lang button.active {
  background: var(--blue-soft);
  color: var(--blue);
  font-weight: 800;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 11px 16px;
  font-weight: 750;
  cursor: pointer;
}
.btn.primary {
  background: var(--blue);
  color: #fff;
}
.btn.primary:hover {
  background: var(--blue-700);
}
.btn.outline {
  border-color: #b9c8d1;
  background: #fff;
  color: var(--blue);
}
.hero {
  padding: 76px 0 58px;
  background: linear-gradient(118deg, #f6f8fa 5%, #eaf5fc 57%, #f6f8fa);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 55px;
  align-items: center;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 12px;
  font-weight: 850;
  color: var(--blue);
}
.eyebrow:before {
  content: "";
  width: 24px;
  height: 3px;
  border-radius: 3px;
  background: var(--blue);
}
h1 {
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.045em;
  margin: 16px 0 20px;
}
h2 {
  font-size: clamp(29px, 3.5vw, 44px);
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin: 12px 0 16px;
}
h3 {
  margin: 0 0 7px;
  font-size: 18px;
}
p {
  color: var(--muted);
  margin: 0 0 18px;
}
.lead {
  font-size: 19px;
  max-width: 620px;
}
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.mini-note {
  font-size: 13px;
  margin-top: 17px;
}
.phone {
  width: min(342px, 90%);
  margin: auto;
  padding: 10px;
  border: 8px solid #24323b;
  border-radius: 37px;
  background: #24323b;
  box-shadow: 0 24px 45px #17456338;
  transform: none;
}
.hero-mockup {
  display: block;
  width: min(342px, 90%);
  margin: auto;
  filter: drop-shadow(0 24px 45px #17456338);
  transform: none;
}
.screen {
  min-height: 585px;
  border-radius: 23px;
  overflow: hidden;
  background: var(--bg);
  font-size: 11px;
}
.appbar {
  height: 47px;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  padding: 0 15px;
  font-weight: 750;
  font-size: 14px;
  gap: 10px;
}
.appbody {
  padding: 13px;
}
.avatar {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #d9edff;
  color: var(--blue);
  display: grid;
  place-items: center;
  font-size: 10px;
}
.app-title {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 13px;
}
.appcard {
  background: #fff;
  border: 1px solid #e1e7ea;
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 10px;
  box-shadow: 0 2px 7px #193b4710;
}
.row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}
.muted {
  color: #667780;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border-radius: 99px;
  padding: 4px 8px;
  font-weight: 750;
  font-size: 9px;
}
.chip:before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}
.open {
  background: #ffe4e3;
  color: var(--open);
}
.progress {
  background: #fff3d9;
  color: var(--progress);
}
.closed {
  background: #e3f5e8;
  color: var(--closed);
}
.appnav {
  display: flex;
  position: absolute;
  align-self: stretch;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8px 12px;
  justify-content: space-around;
  border-top: 1px solid var(--line);
  background: #fff;
  color: #63737d;
}
.appnav b {
  color: var(--blue);
}
.screen {
  position: relative;
  padding-bottom: 49px;
}
.stat-float {
  background: #fff;
  border: 1px solid #cbdde8;
  padding: 14px 16px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  margin: -115px -25px 0 auto;
  width: 260px; /* wider card */
  position: relative;
  font-weight: 700; /* all card text bold */
}

.stat-float .muted,
.stat-list span {
  font-weight: 700;
}
.stat-list {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  justify-content: space-between;
  gap: 6px;
  margin-top: 9px;
  font-size: 10px;
}
.stat-list span {
  white-space: nowrap; /* prevents “in progress” wrapping */
}
.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: -27px;
  position: relative;
}
.benefit {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 4px 18px #1c39420a;
}
.benefit .ico,
.feature .ico {
  display: grid;
  place-items: center;
  width: 37px;
  height: 37px;
  border-radius: 11px;
  background: var(--blue-soft);
  color: var(--blue);
  font-weight: 900;
  margin-bottom: 12px;
}
.benefit p {
  font-size: 13px;
  margin: 0;
}
.section {
  padding: 86px 0;
}
.section.soft {
  background: #eef5f9;
}
.section.white {
  background: #fff;
}
.section.teal {
  background: linear-gradient(120deg, #effbfb, #fff);
}
.section-head {
  max-width: 650px;
  margin-bottom: 34px;
}
.kicker {
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.workflow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 23px;
}
.step-no {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 30px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feature {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 23px;
  transition: 0.2s;
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.feature p {
  font-size: 14px;
  margin: 0;
}
.showcase {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 42px;
  align-items: center;
}
.screenwide {
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: var(--bg);
  box-shadow: var(--shadow);
}
.widebar {
  background: var(--blue);
  color: white;
  padding: 17px 22px;
  font-weight: 800;
}
.widebody {
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.ticket {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 14px;
}
.ticket strong {
  display: block;
  margin: 5px 0;
}
.report {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 42px;
  align-items: center;
}
.report-sheet {
  background: #fff;
  border: 1px solid #cfdde4;
  border-radius: 7px;
  padding: 25px;
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}
.report-head {
  border-bottom: 4px solid var(--blue);
  padding-bottom: 12px;
  font-weight: 850;
  color: var(--blue);
}
.line {
  height: 8px;
  border-radius: 9px;
  background: #e5ecef;
  margin: 11px 0;
}
.line.short {
  width: 58%;
}
.integration {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 15px;
  text-align: center;
}
.integration-card {
  background: #fff;
  border: 1px solid #b9e3e1;
  border-radius: var(--r);
  padding: 25px;
}
.integration-card.brand {
  border-color: #b8d4e8;
}
.integration-card strong {
  display: block;
  font-size: 18px;
}
.arrow {
  color: var(--teal);
  font-size: 28px;
}
.audiences {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.audience {
  border-radius: var(--r);
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
}
.audience .ico {
  font-size: 24px;
  margin-bottom: 16px;
}
.license-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.plan {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 26px;
}
.plan.featured {
  border: 2px solid var(--blue);
  box-shadow: var(--shadow);
}
.plan ul {
  padding-left: 19px;
  color: var(--muted);
  font-size: 14px;
}
.cta {
  background: var(--blue);
  color: #fff;
  padding: 64px 0;
}
.cta h2,
.cta p {
  color: #fff;
}
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 18px;
  align-items: center;
  margin-top: 24px;
  color: #fff;
}
.contact-details a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-contact {
  margin-top: 16px;
  padding-top: 10px;
  border-top: 1px solid #34434c;
}
.form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px;
}
.field {
  padding: 12px 13px;
  border: 1px solid #cbd9e0;
  border-radius: 10px;
  background: #fff;
  font: inherit;
}
.field.wide {
  grid-column: span 2;
  min-height: 92px;
}
.footer {
  padding: 45px 0 25px;
  background: #17232c;
  color: #dce9ee;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 28px;
}
.footer a {
  display: block;
  color: #bdd0da;
  font-size: 14px;
  margin: 8px 0;
}
.copyright {
  font-size: 13px;
  color: #91a8b2;
  border-top: 1px solid #34434c;
  margin-top: 26px;
  padding-top: 18px;
}
.pagehero {
  padding: 66px 0 42px;
  background: #eaf5fc;
}
.crumb {
  font-size: 13px;
  color: var(--blue);
  font-weight: 700;
}
.faq {
  display: grid;
  gap: 10px;
}
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 17px;
}
.faq summary {
  font-weight: 750;
  cursor: pointer;
}
.faq p {
  margin: 12px 0 0;
}
.notice {
  background: var(--teal-soft);
  color: #145c59;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 14px;
}
.hidden {
  display: none;
}
@media (max-width: 800px) {
  .nav {
    height: 64px;
    gap: 10px;
  }
  .nav-links {
    display: none;
  }
  .nav .btn {
    padding: 9px 11px;
    font-size: 13px;
  }
  .hero {
    padding: 50px 0;
  }
  .hero-grid,
  .showcase,
  .report {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .hero-visual {
    order: -1;
  }
  .stat-float {
    margin: -110px -2px 0 auto;
  }
  .benefits,
  .workflow,
  .feature-grid,
  .audiences,
  .license-grid {
    grid-template-columns: 1fr 1fr;
  }
  .integration {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .arrow {
    transform: rotate(90deg);
  }
  .section {
    padding: 58px 0;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .phone,
  .hero-mockup {
    transform: none;
  }
  .form {
    grid-template-columns: 1fr;
  }
  .field.wide {
    grid-column: auto;
  }
}
@media (max-width: 480px) {
  .wrap {
    width: min(100% - 28px, 1160px);
  }
  .brand {
    font-size: 14px;
  }
  .brand-mark {
    width: 30px;
    height: 30px;
  }
  .nav .btn {
    display: none;
  }
  .benefits,
  .workflow,
  .feature-grid,
  .audiences,
  .license-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  h1 {
    font-size: 38px;
  }
  .widebody {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    display: none;
  }
}
