:root {
  --orange: #ff6b00;
  --orange-dark: #e35d00;
  --navy: #071a31;
  --navy-2: #0c2947;
  --blue: #1f74e8;
  --green: #1aa86d;
  --text: #111c31;
  --muted: #5c6c82;
  --line: #dbe5ef;
  --soft: #f4f7fb;
  --white: #ffffff;
  --shadow: 0 18px 55px rgba(7, 26, 49, 0.11);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: #eef3f8;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.48;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid #143d71;
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 18px;
  top: -90px;
  z-index: 100;
  padding: 12px 16px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 18px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.shell {
  width: min(calc(100% - 72px), 1540px);
  max-width: 1540px;
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(219, 229, 239, 0.9);
  box-shadow: 0 8px 28px rgba(7, 26, 49, 0.06);
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 34px;
}

.brand img {
  width: 220px;
  height: 76px;
  object-fit: contain;
}

.primary-nav {
  display: flex;
  justify-content: center;
  gap: 38px;
  flex: 1;
  font-size: 0.98rem;
  font-weight: 800;
}

.primary-nav a,
.link-button {
  text-decoration: none;
}

.primary-nav a:hover,
.link-button:hover {
  color: var(--orange);
}

.header-actions,
.button-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.link-button {
  font-weight: 700;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
  padding: 10px 12px;
  border-radius: var(--radius);
  font-weight: 800;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(255, 107, 0, 0.25);
}

.button-primary:hover {
  background: var(--orange-dark);
}

.button-secondary {
  color: var(--navy);
  background: var(--white);
  border-color: #cbd7e5;
}

.play-button::after {
  content: "▶";
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-left: 14px;
  border: 1px solid #c9d5e3;
  border-radius: 50%;
  font-size: 0.72rem;
}

.button-small {
  min-height: 38px;
  padding: 0 14px;
}

.hero {
  padding: 76px 0 82px;
  background: linear-gradient(180deg, #ffffff 0%, #f6f9fd 100%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(620px, 1.1fr);
  gap: clamp(56px, 6vw, 110px);
  align-items: center;
  min-height: 620px;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 760px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(3rem, 4.6vw, 5.5rem);
  line-height: 1.03;
  letter-spacing: 0;
}

h1 span,
h2 span {
  color: var(--orange);
}

h2 {
  margin: 0 0 22px;
  color: var(--navy);
  font-size: clamp(1.9rem, 2.6vw, 3.2rem);
  line-height: 1.12;
}

h3 {
  margin: 0 0 8px;
  color: var(--navy);
}

.hero-lead {
  max-width: 650px;
  margin: 30px 0;
  color: #2c3b50;
  font-size: 1.26rem;
}

.trust-list,
.check-list {
  list-style: none;
  padding: 0;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 58px 0 0;
}

.trust-list li {
  position: relative;
  min-height: 50px;
  padding-left: 44px;
}

.trust-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 30px;
  height: 30px;
  border: 2px solid var(--navy);
  border-radius: 50%;
}

.trust-list li::after {
  content: "✓";
  position: absolute;
  left: 8px;
  top: 3px;
  color: var(--navy);
  font-weight: 900;
}

.trust-list strong,
.trust-list small {
  display: block;
}

.trust-list strong {
  font-size: 0.88rem;
}

.trust-list small {
  color: var(--muted);
  font-size: 0.76rem;
}

.hero-mascot {
  grid-column: 1;
  justify-self: end;
  align-self: end;
  margin-top: -70px;
  margin-right: 8px;
  z-index: 3;
}

.hero-mascot img {
  width: min(250px, 42vw);
  margin: 0 auto;
  filter: drop-shadow(0 22px 28px rgba(7, 26, 49, 0.18));
}

.dashboard-preview {
  min-height: 455px;
  display: grid;
  grid-template-columns: 154px 1fr;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.dashboard-preview-image {
  grid-column: 2;
  grid-row: 1 / span 2;
  grid-template-columns: 1fr;
  min-height: 0;
  aspect-ratio: 16 / 9;
  background: #071a31;
  border-color: #183554;
}

.dashboard-preview-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
}

.preview-sidebar {
  display: grid;
  align-content: start;
  gap: 15px;
  padding: 22px 16px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
}

.preview-sidebar strong {
  color: var(--orange);
  font-size: 1.22rem;
  margin-bottom: 8px;
}

.preview-sidebar span:nth-child(2) {
  margin-inline: -9px;
  padding: 10px;
  background: var(--orange);
  border-radius: 6px;
}

.preview-content {
  padding: 18px;
  background: #f7f9fc;
}

.preview-topbar {
  height: 42px;
  margin-bottom: 18px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  font-weight: 900;
}

.preview-topbar small {
  color: var(--muted);
  font-weight: 700;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.metric-grid article {
  min-height: 108px;
  padding: 16px;
  background: var(--white);
  border: 1px solid #e3ebf3;
  border-radius: 8px;
}

.metric-grid span,
.metric-grid small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.metric-grid strong {
  display: block;
  margin: 8px 0 6px;
  color: var(--navy);
  font-size: 2.2rem;
  line-height: 1;
}

.metric-grid small {
  color: var(--green);
}

.preview-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 16px;
}

.preview-panels article {
  min-height: 190px;
  padding: 18px;
  background: var(--white);
  border: 1px solid #e3ebf3;
  border-radius: 8px;
}

.preview-panels h2 {
  font-size: 1rem;
  margin-bottom: 12px;
}

.preview-panels p {
  position: relative;
  margin: 12px 0;
  padding-left: 12px;
  color: var(--muted);
  border-left: 3px solid #d5e2ef;
}

.preview-panels p strong {
  float: right;
  color: var(--orange);
  font-size: 0.72rem;
}

.preview-panels p small {
  display: block;
  color: var(--muted);
}

.feature-strip {
  padding: 104px 0 116px;
  background: #f6f9fd;
}

.section-head {
  max-width: 820px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-head h2 {
  margin-bottom: 14px;
}

.section-head p:last-child {
  margin: 0;
  color: #34445a;
  font-size: 1.08rem;
}

.feature-showcase {
  max-width: 1340px;
}

.feature-strip .section-head {
  max-width: 960px;
  margin-bottom: 24px;
}

.feature-strip .section-head h2 {
  font-size: clamp(2.2rem, 3.2vw, 3.75rem);
}

.feature-benefits {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding: 0;
  margin: 0 auto 42px;
  list-style: none;
  color: #27364c;
  font-size: 0.92rem;
  font-weight: 800;
}

.feature-benefits li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 28px;
}

.feature-benefits li + li {
  border-left: 1px solid #d4dde8;
}

.feature-benefits span {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: var(--orange);
  background: #fff0e5;
  border-radius: 50%;
  font-size: 0.78rem;
}

.feature-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.feature-showcase-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 500px;
  padding: 26px 26px 22px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #e1e8f0;
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(7, 26, 49, 0.07);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.feature-showcase-card:hover {
  transform: translateY(-3px);
  border-color: #f4b98d;
  box-shadow: 0 22px 46px rgba(7, 26, 49, 0.11);
}

.feature-card-heading {
  display: flex;
  align-items: center;
  gap: 16px;
}

.feature-card-heading h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.22rem;
}

.feature-card-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  color: var(--orange);
  background: #fff7f0;
  border: 1px solid #ffd9bd;
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(255, 107, 0, 0.11);
}

.feature-card-icon .line-icon {
  width: 34px;
  height: 34px;
  margin: 0;
}

.feature-card-icon .line-icon::before {
  inset: 5px;
  border-width: 3px;
}

.feature-showcase-card > p {
  min-height: 64px;
  margin: 20px 0 16px;
  color: #34445a;
  font-size: 0.96rem;
  line-height: 1.5;
}

.feature-check-list {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0 0 20px;
  list-style: none;
  color: #44546a;
  font-size: 0.84rem;
}

.feature-check-list li {
  position: relative;
  padding-left: 24px;
}

.feature-check-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 1px;
  display: grid;
  place-items: center;
  width: 15px;
  height: 15px;
  color: var(--orange);
  background: #ffe4d0;
  border-radius: 50%;
  font-size: 0.66rem;
  font-weight: 900;
}

.feature-preview {
  min-width: 0;
  min-height: 130px;
  margin-top: auto;
  overflow: hidden;
  background: #fbfdff;
  border: 1px solid #e6ecf3;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(7, 26, 49, 0.06);
}

.object-preview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 108px;
  grid-template-rows: 72px 58px;
}

.object-preview-main {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 12px;
}

.object-preview-main img {
  flex: 0 0 auto;
  width: 52px;
  height: 42px;
  object-fit: cover;
  border-radius: 5px;
}

.object-preview-main div,
.object-preview-main strong,
.object-preview-main small {
  min-width: 0;
}

.object-preview-main strong,
.object-preview-main small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.object-preview-main strong {
  color: var(--navy);
  font-size: 0.76rem;
}

.object-preview-main small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.62rem;
}

.object-preview-map {
  grid-column: 2;
  grid-row: 1 / 3;
  position: relative;
  background-color: #e6edf1;
  background-image: linear-gradient(28deg, transparent 45%, #c6d5df 46%, #c6d5df 50%, transparent 51%), linear-gradient(104deg, transparent 44%, #d1dde5 45%, #d1dde5 49%, transparent 50%);
}

.object-preview-map::before,
.object-preview-map::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.object-preview-map::before {
  width: 18px;
  height: 18px;
  left: 48px;
  top: 54px;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(31, 116, 232, 0.18);
}

.object-preview-map::after {
  width: 8px;
  height: 8px;
  left: 28px;
  top: 79px;
  background: #35b777;
}

.object-preview-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  border-top: 1px solid #edf1f6;
}

.object-preview-stats div {
  padding: 9px 12px;
}

.object-preview-stats div + div {
  border-left: 1px solid #edf1f6;
}

.object-preview-stats dt {
  color: var(--muted);
  font-size: 0.6rem;
}

.object-preview-stats dd {
  margin: 1px 0 0;
  color: var(--navy);
  font-size: 0.96rem;
  font-weight: 900;
}

.qr-preview {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
}

.qr-preview-visual {
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 7px;
  background: #f8fafc;
  border-right: 1px solid #e8eef4;
}

.qr-preview-visual small {
  color: var(--orange);
  font-size: 0.62rem;
  font-weight: 900;
}

.qr-pattern {
  width: 54px;
  height: 54px;
  background-color: #fff;
  background-image: conic-gradient(from 90deg, #17314e 25%, #fff 0 50%, #17314e 0 75%, #fff 0);
  background-size: 12px 12px;
  border: 5px solid #fff;
  box-shadow: 0 0 0 1px #ccd8e4;
}

.qr-preview-list {
  min-width: 0;
  padding: 10px;
}

.qr-preview-list > strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
  font-size: 0.66rem;
}

.qr-preview-list > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px;
  align-items: center;
  padding: 8px 0;
  border-top: 1px solid #edf1f5;
}

.qr-preview-list b,
.qr-preview-list small {
  display: block;
}

.qr-preview-list b {
  color: var(--navy);
  font-size: 0.64rem;
}

.qr-preview-list small {
  color: var(--muted);
  font-size: 0.56rem;
}

.qr-preview-list em,
.ticket-preview em,
.employee-preview em {
  padding: 3px 7px;
  color: #1362c2;
  background: #e6f1ff;
  border-radius: 999px;
  font-size: 0.52rem;
  font-style: normal;
  white-space: nowrap;
}

.ticket-preview {
  padding: 5px 10px;
}

.ticket-preview > div,
.employee-preview > div {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto 10px;
  gap: 8px;
  align-items: center;
  min-height: 39px;
  border-bottom: 1px solid #edf1f5;
}

.ticket-preview > div:last-child,
.employee-preview > div:last-child {
  border-bottom: 0;
}

.ticket-preview-icon {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: #71839a;
  background: #f0f4f8;
  border-radius: 6px;
}

.ticket-preview b,
.ticket-preview small,
.employee-preview b,
.employee-preview small {
  display: block;
}

.ticket-preview b,
.employee-preview b {
  color: var(--navy);
  font-size: 0.65rem;
}

.ticket-preview small,
.employee-preview small {
  color: var(--muted);
  font-size: 0.56rem;
}

.ticket-preview i {
  color: #a0adbd;
  font-style: normal;
}

.ticket-preview em.critical {
  color: #c23838;
  background: #ffe9e9;
}

.ticket-preview em.planned {
  color: #a66b00;
  background: #fff3d5;
}

.ticket-preview em.done,
.employee-preview em.online {
  color: #177245;
  background: #e4f6eb;
}

.employee-preview {
  padding: 6px 12px;
}

.employee-preview > div {
  grid-template-columns: 32px minmax(0, 1fr) auto;
}

.employee-avatar {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--white);
  background: #173e65;
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 900;
}

.employee-preview em.away {
  color: #b45c12;
  background: #ffead9;
}

.calendar-preview {
  padding: 8px 12px 4px;
}

.calendar-preview-head {
  display: grid;
  grid-template-columns: 24px 1fr 24px auto;
  gap: 6px;
  align-items: center;
  padding-bottom: 5px;
}

.calendar-preview-head button {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  padding: 0;
  color: #66788e;
  background: #f0f4f8;
  border: 0;
  border-radius: 5px;
}

.calendar-preview-head strong {
  color: var(--navy);
  font-size: 0.68rem;
}

.calendar-preview-head > span {
  padding: 4px 8px;
  color: #44566c;
  background: #f6f8fb;
  border: 1px solid #e2e9f0;
  border-radius: 5px;
  font-size: 0.58rem;
}

.calendar-preview-row {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 9px;
  min-height: 43px;
  padding: 7px 5px;
  border-top: 1px solid #edf1f5;
  box-shadow: inset 3px 0 0 #4c91f4;
}

.calendar-preview-row time {
  color: #2d7ce8;
  font-size: 0.65rem;
  font-weight: 900;
}

.calendar-preview-row b,
.calendar-preview-row small {
  display: block;
}

.calendar-preview-row b {
  color: var(--navy);
  font-size: 0.65rem;
}

.calendar-preview-row small {
  color: var(--muted);
  font-size: 0.56rem;
}

.report-preview {
  padding: 13px 16px;
}

.report-preview > strong {
  color: var(--navy);
  font-size: 0.68rem;
}

.report-preview-body {
  display: grid;
  grid-template-columns: 105px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  margin-top: 7px;
}

.report-donut {
  position: relative;
  display: block;
  width: 88px;
  height: 88px;
  margin: auto;
  background: conic-gradient(#1aa86d 0 57%, #f3b91f 57% 67%, #ff7a1a 67% 80%, #2f7fe8 80% 100%);
  border-radius: 50%;
}

.report-donut::after {
  content: "";
  position: absolute;
  inset: 22px;
  background: #fbfdff;
  border-radius: 50%;
}

.report-preview dl {
  display: grid;
  gap: 5px;
  margin: 0;
}

.report-preview dl div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #53647a;
  font-size: 0.6rem;
}

.report-preview dt {
  display: flex;
  align-items: center;
  gap: 6px;
}

.report-preview dd {
  margin: 0;
  color: var(--navy);
  font-weight: 900;
}

.report-preview i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.report-preview i.blue { background: #2f7fe8; }
.report-preview i.orange { background: #ff7a1a; }
.report-preview i.yellow { background: #f3b91f; }
.report-preview i.green { background: #1aa86d; }

.feature-showcase-cta {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto auto;
  gap: 18px;
  align-items: center;
  margin-top: 22px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #e1e8f0;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(7, 26, 49, 0.06);
}

.feature-cta-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--white);
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(255, 107, 0, 0.26);
}

.feature-showcase-cta strong {
  display: block;
  color: var(--navy);
  font-size: 1rem;
}

.feature-showcase-cta p {
  margin: 2px 0 0;
  color: #53647a;
  font-size: 0.84rem;
}

.feature-showcase-cta .button {
  gap: 18px;
  min-width: 205px;
}

.feature-more-link {
  display: inline-flex;
  gap: 16px;
  align-items: center;
  padding: 12px 8px;
  color: var(--orange);
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration: none;
}

.icon-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.icon-card-grid article {
  min-height: 250px;
  padding: 44px 34px 36px;
  text-align: left;
  background: var(--white);
  border: 1px solid #edf2f7;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(7, 26, 49, 0.08);
}

.line-icon,
.step-icon {
  display: block;
  color: var(--orange);
}

.line-icon {
  margin: 0 0 22px;
}

.step-icon {
  margin: 0 auto 16px;
}

.line-icon {
  width: 48px;
  height: 48px;
  position: relative;
}

.line-icon::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 4px solid currentColor;
  border-radius: 7px;
}

.line-icon.qr::before {
  border-style: dotted;
}

.line-icon.wrench::before {
  transform: rotate(45deg);
  border-radius: 50%;
}

.line-icon.users::before {
  border-radius: 50%;
  box-shadow: 18px 9px 0 -8px currentColor, -18px 9px 0 -8px currentColor;
}

.line-icon.calendar::before {
  border-top-width: 10px;
}

.line-icon.chart::before {
  border-left-width: 10px;
  border-bottom-width: 10px;
}

.icon-card-grid h3,
.steps h3 {
  font-size: 1.16rem;
}

.icon-card-grid p,
.steps p {
  margin: 0;
  color: #34445a;
  font-size: 0.98rem;
}

.steps-section {
  padding: 104px 0 112px;
  background: #ffffff;
}

.steps-section h2 {
  text-align: center;
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 38px;
  position: relative;
}

.steps article {
  position: relative;
  text-align: center;
  padding: 24px 14px;
}

.steps article:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -38px;
  top: 72px;
  width: 76px;
  height: 2px;
  background: #b9c5d4;
}

.steps article > span {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-72px);
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--white);
  background: var(--orange);
  border-radius: 50%;
  font-weight: 900;
}

.step-icon {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: #f7f9fd;
  border: 1px solid #edf2f7;
  position: relative;
}

.step-icon::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 4px solid var(--navy);
  border-radius: 6px;
}

.step-icon.done::before {
  border-radius: 50%;
}

.step-icon.done::after {
  content: "✓";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--navy);
  font-size: 2rem;
  font-weight: 900;
}

.dashboard-section {
  position: relative;
  padding: 86px 0 72px;
  overflow: hidden;
  color: #e8eef6;
  background: #061523;
  border-top: 1px solid #122a40;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(390px, 0.72fr) minmax(700px, 1.28fr);
  gap: clamp(42px, 4vw, 78px);
  align-items: center;
  max-width: 1580px;
}

.dashboard-copy {
  position: relative;
  z-index: 2;
  padding-left: 22px;
}

.dashboard-eyebrow {
  margin: 0 0 20px;
  color: var(--orange);
  font-size: 0.98rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.dashboard-copy h2 {
  margin-bottom: 22px;
  color: #f8fafc;
  font-size: clamp(3rem, 4vw, 4.25rem);
  line-height: 1;
}

.dashboard-copy p {
  max-width: 520px;
  margin: 0;
  color: #c1cbd8;
  font-size: 1.06rem;
  line-height: 1.8;
}

.dashboard-check-list {
  display: grid;
  gap: 13px;
  margin: 30px 0 34px;
  padding: 0;
  list-style: none;
}

.dashboard-check-list li {
  margin: 0;
  padding-left: 34px;
  color: #f1f5f9;
  font-size: 1.01rem;
}

.dashboard-check-list li::before {
  top: 1px;
  width: 19px;
  height: 19px;
  content: "\2713";
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.08);
}

.dashboard-cta {
  gap: 12px;
  min-height: 54px;
  padding: 0 24px;
}

.dashboard-cta-icon {
  position: relative;
  width: 21px;
  height: 15px;
  border: 2px solid currentColor;
}

.dashboard-cta-icon::before {
  content: "";
  position: absolute;
  left: 7px;
  bottom: -6px;
  width: 5px;
  height: 5px;
  border-left: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.dashboard-cta-icon::after {
  content: "";
  position: absolute;
  left: 4px;
  bottom: -8px;
  width: 11px;
  border-bottom: 2px solid currentColor;
}

.dashboard-assurances {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0;
  margin: 38px 0 0;
  color: #9eadbd;
  list-style: none;
  font-size: 0.72rem;
  white-space: nowrap;
}

.dashboard-assurances li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.assurance-icon {
  position: relative;
  display: inline-block;
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
}

.assurance-icon.shield {
  border: 1.5px solid #9eadbd;
  border-radius: 4px 4px 8px 8px;
}

.assurance-icon.clock {
  border: 1.5px solid #9eadbd;
  border-radius: 50%;
}

.assurance-icon.clock::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 3px;
  width: 4px;
  height: 5px;
  border-left: 1px solid #9eadbd;
  border-bottom: 1px solid #9eadbd;
}

.assurance-icon.lock {
  top: 3px;
  height: 13px;
  border: 1.5px solid #9eadbd;
  border-radius: 2px;
}

.assurance-icon.lock::before {
  content: "";
  position: absolute;
  left: 3px;
  top: -8px;
  width: 8px;
  height: 8px;
  border: 1.5px solid #9eadbd;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
}

.check-list {
  margin: 24px 0;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 11px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  color: var(--white);
  background: var(--orange);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 900;
}

.device-showcase {
  position: relative;
  min-width: 0;
  min-height: 580px;
  padding-right: 92px;
}

.laptop-preview {
  position: absolute;
  left: 0;
  right: 78px;
  top: 0;
  padding: 17px 17px 24px;
  background: #03080d;
  border: 3px solid #45505e;
  border-bottom-width: 8px;
  border-radius: 31px 31px 14px 14px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.42);
}

.laptop-preview::after {
  content: "";
  position: absolute;
  left: -5%;
  bottom: -26px;
  display: block;
  width: 110%;
  height: 25px;
  background: #343f4c;
  border: 2px solid #505b68;
  border-radius: 0 0 44px 44px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.44);
}

.laptop-screen {
  aspect-ratio: 16 / 9;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  background: #071a2c;
  border-radius: 14px 14px 5px 5px;
}

.laptop-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.phone-preview {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  display: block;
  width: 226px;
  min-height: 472px;
  padding: 35px 12px 55px;
  overflow: hidden;
  color: #dce7f1;
  background: #071827;
  border: 8px solid #11161d;
  border-radius: 38px;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.55), 0 0 0 2px #52606d;
}

.phone-speaker {
  position: absolute;
  top: 0;
  left: 50%;
  width: 88px;
  height: 19px;
  transform: translateX(-50%);
  background: #05080c;
  border-radius: 0 0 13px 13px;
}

.phone-app-head {
  display: grid;
  grid-template-columns: 24px 1fr 16px;
  gap: 7px;
  align-items: center;
}

.phone-app-head div,
.phone-app-head small,
.phone-app-head strong {
  display: block;
}

.phone-app-head small,
.phone-section-label,
.phone-greeting,
.phone-task-card > small {
  color: #8294a7;
  font-size: 0.47rem;
  font-weight: 800;
  text-transform: uppercase;
}

.phone-app-head strong {
  color: #f4f7fa;
  font-size: 0.76rem;
}

.phone-menu {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  background: #12283a;
  border-radius: 5px;
  font-size: 0.7rem;
}

.phone-search {
  margin: 10px 0 14px;
  padding: 8px;
  color: #8ea0b1;
  background: #102c45;
  border: 1px solid #193a55;
  border-radius: 6px;
  font-size: 0.53rem;
}

.phone-section-label,
.phone-greeting {
  margin: 0 0 3px;
}

.phone-section-title,
.phone-next-title {
  display: block;
  color: #f5f7fa;
  font-size: 0.68rem;
}

.phone-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px;
  margin: 8px 0 12px;
  padding: 7px 0;
  border-top: 1px solid #17354c;
  border-bottom: 1px solid #17354c;
}

.phone-stats span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  min-width: 0;
  color: #d5deea;
  font-size: 0.43rem;
  white-space: nowrap;
}

.phone-stats i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
}

.phone-stats i.green { background: #13b56d; }
.phone-stats i.orange { background: var(--orange); }
.phone-stats i.blue { background: #3f86ef; }

.phone-task-card {
  margin-top: 8px;
  padding: 10px;
  background: #0b263c;
  border: 1px solid #1b425f;
  border-left: 3px solid var(--orange);
  border-radius: 7px;
}

.phone-task-card strong,
.phone-task-card span,
.phone-task-card em,
.phone-task-card b {
  display: block;
}

.phone-task-card strong {
  margin: 2px 0;
  color: #f6f8fa;
  font-size: 0.68rem;
}

.phone-task-card span {
  color: #b3c1cf;
  font-size: 0.48rem;
  line-height: 1.35;
}

.phone-task-card em {
  margin: 6px 0;
  padding: 4px 6px;
  color: #f3c89a;
  background: #3b2b20;
  border-radius: 999px;
  font-size: 0.47rem;
  font-style: normal;
}

.phone-task-card b {
  margin-top: 6px;
  color: #8598a9;
  font-size: 0.45rem;
  text-transform: uppercase;
}

.phone-task-card ul {
  display: grid;
  gap: 2px;
  padding: 6px 0 0 12px;
  margin: 0;
  color: #aebdca;
  list-style: none;
  font-size: 0.46rem;
}

.phone-task-card li {
  position: relative;
}

.phone-task-card li::before {
  content: "";
  position: absolute;
  left: -11px;
  top: 3px;
  width: 5px;
  height: 5px;
  border: 1px solid #7c90a2;
  border-radius: 50%;
}

.phone-task-card li.done::before {
  background: #1cc47b;
  border-color: #1cc47b;
}

.phone-preview > button {
  width: 100%;
  margin-top: 8px;
  padding: 7px;
  color: #fff;
  background: var(--orange);
  border: 0;
  border-radius: 5px;
  font-size: 0.58rem;
  font-weight: 900;
}

.phone-bottom-nav {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 8px 6px;
  background: #081421;
  border-top: 1px solid #1b354a;
}

.phone-bottom-nav > span {
  display: grid;
  justify-items: center;
  gap: 1px;
  color: #c1ccd7;
  font-size: 0.66rem;
}

.phone-bottom-nav small {
  font-size: 0.38rem;
}

.phone-bottom-nav .active {
  color: var(--orange);
}

.pricing-section {
  padding: 0 0 116px;
  background: #061523;
}

.pricing-head-panel {
  padding: 28px 34px 32px;
  background: #071827;
  border: 1px solid #1b344a;
  border-radius: 14px 14px 0 0;
}

.pricing-head-panel .section-head {
  margin-bottom: 0;
}

.pricing-head-panel .section-head h2 {
  margin-bottom: 0;
  color: #f4f7fa;
  font-size: clamp(2rem, 2.5vw, 3rem);
  line-height: 1.2;
}

.pricing-head-panel .section-head p:last-child {
  display: none;
}

.pricing-section .pricing-layout {
  padding-top: 62px;
  padding-bottom: 0;
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 36px;
  align-items: stretch;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.price-card,
.included-card,
.form-card,
.contact-card,
.legal-content,
details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(7, 26, 49, 0.07);
}

.price-card {
  position: relative;
  min-height: 430px;
  padding: 38px;
  display: flex;
  flex-direction: column;
}

.price-card.highlighted {
  border-color: var(--orange);
  box-shadow: 0 20px 50px rgba(255, 107, 0, 0.16);
}

.badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  padding: 8px 18px;
  color: var(--white);
  background: var(--orange);
  border-radius: 7px;
  font-size: 0.82rem;
  font-weight: 900;
  white-space: nowrap;
}

.price {
  margin: 10px 0 2px;
  color: var(--navy);
  font-size: 2.5rem;
  font-weight: 900;
}

.price span {
  color: var(--muted);
  font-size: 0.9rem;
}

.price.checkout-price {
  max-width: 220px;
  color: var(--navy);
  font-size: 1.2rem;
  line-height: 1.28;
}

.price-card p {
  color: #34445a;
}

.price-card .trial-note {
  margin: 10px 0 0;
  color: var(--orange);
  font-weight: 900;
}

.price-card ul {
  margin: 22px 0;
  padding-left: 20px;
}

.price-card li {
  margin-bottom: 8px;
}

.price-card li::marker {
  color: var(--orange);
}

.price-card .button {
  width: 100%;
  margin-top: auto;
}

.included-card {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 34px;
  align-items: center;
  max-width: 980px;
  margin: 10px auto 0;
  padding: 34px 44px;
  background: #f5f8fc;
}

.included-card img {
  align-self: end;
}

.included-card h3 {
  display: inline-block;
  padding: 10px 18px;
  background: #e9eef5;
  border-radius: 7px;
}

.pwa-section {
  padding: 112px 0 116px;
  background: #ffffff;
}

.app-testimonial-grid {
  display: grid;
  grid-template-columns: minmax(440px, 0.65fr) minmax(0, 1fr);
  gap: clamp(54px, 6vw, 96px);
  align-items: center;
}

.app-promo {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 26px;
  align-items: center;
}

.mini-phone {
  min-height: 250px;
  padding: 22px 14px;
  display: grid;
  gap: 14px;
  align-content: start;
  background: var(--white);
  border: 8px solid #111c31;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.mini-phone img {
  width: 98px;
}

.mini-phone span,
.mini-phone strong {
  display: block;
  padding: 10px;
  border-radius: 7px;
  background: #eff5ff;
}

.mini-phone strong {
  color: var(--white);
  background: var(--blue);
}

.platform-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.platform-row span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 800;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.testimonial-grid article {
  min-height: 150px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(7, 26, 49, 0.06);
}

.testimonial-grid strong {
  color: var(--orange);
}

.testimonial-grid small {
  color: var(--muted);
  font-weight: 800;
}

.faq-section,
.contact-section,
.form-section,
.legal-content,
.page-contact {
  padding: 104px 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

details {
  padding: 22px;
}

summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 900;
}

.contact-section {
  background: var(--navy);
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 0.55fr);
  gap: clamp(54px, 6vw, 92px);
  align-items: center;
}

.contact-section h2,
.contact-section .eyebrow {
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange-dark);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form-card {
  padding: 28px;
}

.form-card label {
  display: block;
  margin: 14px 0 8px;
  color: var(--navy);
  font-weight: 800;
}

.form-card input,
.form-card textarea,
.form-card select {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid #cbd7e5;
  border-radius: 8px;
  color: var(--text);
  background: var(--white);
  font: inherit;
}

.form-card textarea {
  resize: vertical;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.wide-form {
  max-width: 880px;
  margin: 0 auto;
}

.narrow {
  max-width: 620px;
}

.checkbox-label {
  display: flex !important;
  gap: 10px;
  align-items: start;
}

.checkbox-label input {
  width: 20px;
  min-height: 20px;
  margin-top: 4px;
}

.privacy-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.page-hero {
  padding: 70px 0 50px;
  background: linear-gradient(180deg, #ffffff, #f4f7fb);
}

.compact-hero h1 {
  max-width: 820px;
  font-size: clamp(2.1rem, 4vw, 3.5rem);
}

.compact-hero p {
  max-width: 760px;
  color: var(--muted);
}

.contact-card {
  padding: 28px;
}

.legal-content {
  margin-top: 48px;
  padding: 34px;
}

.legal-content h2 {
  margin-top: 28px;
  font-size: 1.35rem;
}

.form-alert,
.onboarding-notice,
.hint-box {
  margin-bottom: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7fbff;
}

.form-alert.error,
.hint-box.warning {
  border-color: #ffd1c2;
  background: #fff4ef;
  color: #8a2600;
}

.form-alert.warning {
  border-color: #ffe2a8;
  background: #fff8e8;
  color: #704100;
}

.form-alert.success,
.hint-box.success {
  border-color: #bde8cf;
  background: #effaf4;
  color: #126333;
}

.login-hero {
  padding: 72px 0 42px;
}

.login-section {
  padding-top: 36px;
}

.form-links {
  margin: 12px 0 18px;
  color: var(--muted);
  font-weight: 800;
}

.form-links a {
  color: var(--orange-dark);
}

.muted-link {
  margin-bottom: 0;
  text-align: center;
}

.onboarding-shell,
.customer-dashboard,
.settings-page {
  padding: 38px 0 72px;
}

.onboarding-head,
.dashboard-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}

.onboarding-head h1 {
  margin: 6px 0 8px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
}

.onboarding-head p {
  max-width: 760px;
  color: var(--muted);
}

.wizard-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.wizard-steps li {
  min-width: 0;
  padding: 10px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.wizard-steps span {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  background: #edf4fb;
  border-radius: 999px;
}

.wizard-steps strong {
  display: block;
  overflow: hidden;
  color: var(--navy);
  font-size: 0.78rem;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.wizard-steps li.is-active {
  background: #fff7f1;
  border-color: #ffb078;
  box-shadow: 0 14px 34px rgba(255, 108, 0, 0.14);
}

.wizard-steps li.is-active span {
  color: var(--white);
  background: var(--orange);
}

.wizard-steps li.is-done span {
  color: #0c6b37;
  background: #dff7e9;
}

.progress-track {
  height: 10px;
  margin-bottom: 22px;
  overflow: hidden;
  background: #e7eef6;
  border-radius: 999px;
}

.progress-track span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--orange), #1f6feb);
  border-radius: inherit;
}

.onboarding-card {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.onboarding-card-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.onboarding-card-head span {
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.onboarding-card-head h2 {
  margin: 0;
  font-size: 1.45rem;
}

.onboarding-intro {
  margin-bottom: 22px;
  padding: 18px;
  background: #f8fbff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.onboarding-intro h3 {
  margin: 0 0 6px;
  font-size: 1.25rem;
}

.onboarding-intro p {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.onboarding-card label {
  display: grid;
  gap: 8px;
  margin: 0;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 850;
}

.onboarding-card input,
.onboarding-card textarea,
.onboarding-card select {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--navy);
  font: inherit;
  background: #f8fbff;
  border: 1px solid #cfddec;
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.onboarding-card textarea {
  min-height: 120px;
  resize: vertical;
}

.onboarding-card input::placeholder,
.onboarding-card textarea::placeholder {
  color: #8798ad;
}

.onboarding-card input:focus,
.onboarding-card textarea:focus,
.onboarding-card select:focus {
  background: var(--white);
  border-color: #1f6feb;
  outline: none;
  box-shadow: 0 0 0 4px rgba(31, 111, 235, 0.14);
}

.wizard-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.button-secondary,
.button-ghost {
  color: var(--navy);
  background: #eef4fb;
  border: 1px solid var(--line);
}

.button-ghost {
  background: transparent;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  border: 0;
}

.choice-grid legend {
  grid-column: 1 / -1;
  margin-bottom: 4px;
  font-weight: 800;
}

.choice-grid label,
.category-list label {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbff;
}

.choice-grid input[type="radio"],
.choice-grid input[type="checkbox"] {
  width: 20px;
  min-height: 20px;
  flex: 0 0 20px;
  padding: 0;
}

.notification-options label {
  align-items: flex-start;
}

.notification-options strong,
.notification-options small {
  display: block;
}

.notification-options small {
  margin-top: 4px;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.45;
}

.onboarding-summary {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.choice-grid.stacked {
  grid-template-columns: 1fr;
}

.category-list {
  display: grid;
  gap: 12px;
}

.category-list label {
  align-items: stretch;
  flex-direction: column;
}

.full-span {
  grid-column: 1 / -1;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.summary-grid article {
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.summary-grid small {
  display: block;
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
}

.summary-grid strong {
  display: block;
  margin-top: 8px;
  font-size: 1.35rem;
}

.settings-links {
  margin-top: 26px;
}

.quickstart-panel {
  margin: 28px 0;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.quickstart-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.quickstart-head h2 {
  margin: 4px 0 0;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.quickstart-head span {
  color: var(--muted);
  font-weight: 800;
}

.quickstart-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.quickstart-card {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 6px 14px;
  min-height: 128px;
  padding: 18px;
  color: var(--navy);
  text-decoration: none;
  background: #f8fbff;
  border: 1px solid #d8e3ef;
  border-radius: 8px;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.quickstart-card:hover {
  transform: translateY(-2px);
  border-color: #ffb078;
  box-shadow: 0 16px 34px rgba(9, 33, 64, 0.12);
}

.quickstart-card span {
  display: grid;
  grid-row: span 2;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--orange);
  font-size: 1.3rem;
  font-weight: 900;
  background: #fff3ea;
  border-radius: 999px;
}

.quickstart-card strong {
  align-self: end;
  font-size: 1.02rem;
}

.quickstart-card small {
  color: var(--muted);
  line-height: 1.45;
}

.quickstart-card.is-done {
  background: #f0fbf5;
  border-color: #bce9cf;
}

.quickstart-card.is-done span {
  color: #0f7138;
  background: #dff7e9;
}

.icon-card-grid.compact {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.icon-card-grid.compact a {
  display: block;
  padding: 18px;
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
  background: var(--white);
  border: 1px solid var(--line);
}

.summary-list {
  margin-bottom: 18px;
}

.site-footer {
  padding: 38px 0 18px;
  background: #071a31;
  color: #dce7f3;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 34px;
}

.footer-brand img {
  width: 180px;
  height: auto;
  object-fit: contain;
}

.footer-grid h2 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 1rem;
}

.footer-grid a {
  display: block;
  margin-bottom: 8px;
  color: #dce7f3;
  text-decoration: none;
}

.footer-grid a:hover {
  color: var(--orange);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: #a9b9cc;
  font-size: 0.9rem;
}

.consent-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 18px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.consent-banner p {
  margin: 0;
}

.consent-banner[hidden],
.consent-banner.is-hidden {
  display: none !important;
}

.register-page {
  background: #f3f7fb;
}

.register-main {
  padding: 54px 0 70px;
  background:
    radial-gradient(circle at top left, rgba(255, 107, 0, 0.16), transparent 28%),
    linear-gradient(135deg, #071a31 0%, #0d2d4e 48%, #f3f7fb 48%, #f3f7fb 100%);
}

.register-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.72fr);
  gap: 34px;
  align-items: center;
}

.register-copy {
  color: var(--white);
}

.register-copy .eyebrow {
  color: #ffb070;
}

.register-copy h1 {
  max-width: 720px;
  margin-bottom: 20px;
  color: var(--white);
  font-size: clamp(2.8rem, 5vw, 5.4rem);
}

.register-lead {
  max-width: 670px;
  margin: 0 0 28px;
  color: #d7e5f3;
  font-size: 1.16rem;
  line-height: 1.7;
}

.register-plan-summary {
  display: inline-grid;
  gap: 5px;
  min-width: 270px;
  margin-bottom: 26px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.22);
}

.register-plan-summary span,
.register-plan-summary small {
  color: #b9cce1;
}

.register-plan-summary strong {
  color: var(--white);
  font-size: 1.4rem;
}

.register-steps {
  display: grid;
  gap: 12px;
  max-width: 520px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.register-steps li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 3px 14px;
  align-items: center;
  padding: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.register-steps span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--white);
  background: var(--orange);
  border-radius: 50%;
  font-weight: 900;
}

.register-steps strong {
  color: var(--white);
}

.register-steps small {
  color: #b9cce1;
}

.register-card {
  padding: 30px;
  background: var(--white);
  border: 1px solid #d9e4ef;
  border-radius: 8px;
  box-shadow: 0 26px 70px rgba(7, 26, 49, 0.22);
}

.register-card-head {
  margin-bottom: 22px;
}

.register-card-head h2 {
  margin-bottom: 8px;
  font-size: clamp(1.65rem, 2.4vw, 2.3rem);
}

.register-card-head p {
  margin: 0;
  color: var(--muted);
}

.register-success,
.register-result {
  margin: 16px 0 0;
  padding: 13px 15px;
  color: #0f4f34;
  background: #e9f8ef;
  border: 1px solid #bce8cb;
  border-radius: 8px;
  font-weight: 800;
}

.register-result:empty {
  display: none;
}

.register-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.register-field {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 7px;
  color: var(--navy);
  font-weight: 850;
}

.register-field > span:first-child {
  display: flex;
  min-height: 24px;
  align-items: flex-end;
}

.register-field-wide,
.register-submit {
  grid-column: 1 / -1;
}

.register-field input,
.register-field select {
  width: 100%;
  height: 56px;
  min-height: 56px;
  padding: 12px 14px;
  color: var(--navy);
  font: inherit;
  background: #f8fbff;
  border: 1px solid #cfddec;
  border-radius: 8px;
  outline: none;
}

.register-field input:focus,
.register-field select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.14);
}

.register-slug-control {
  display: flex;
  align-items: stretch;
  width: 100%;
  height: 56px;
  min-height: 56px;
  min-width: 0;
}

.register-field.register-slug-field {
  min-width: 0;
}

.register-slug-control .register-slug-input {
  flex: 1 1 0;
  width: 0;
  min-width: 0;
  border-radius: 8px 0 0 8px;
}

.register-slug-suffix {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  padding: 0 10px;
  color: #43556c;
  background: #e9f0f7;
  border: 1px solid #cfddec;
  border-left: 0;
  border-radius: 0 8px 8px 0;
  font-size: 0.84rem;
  font-weight: 850;
  white-space: nowrap;
}

.register-slug-field:focus-within .register-slug-suffix {
  border-color: var(--orange);
}

.register-slug-status {
  display: grid;
  align-items: flex-start;
  gap: 3px;
  min-height: 44px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 750;
  line-height: 1.25;
}

.register-slug-status.is-available {
  color: #147044;
}

.register-slug-status.is-available > span::before {
  content: "\2713 ";
  font-weight: 900;
}

.register-slug-status.is-unavailable,
.register-slug-status.is-invalid {
  color: #b52d35;
}

.register-slug-status.is-checking {
  color: #53647a;
}

.register-slug-status.is-address {
  color: #43556c;
}

.register-slug-status button {
  padding: 0;
  color: #125fbd;
  background: transparent;
  border: 0;
  font: inherit;
  text-align: left;
  text-decoration: underline;
  cursor: pointer;
}

.register-confirmation[hidden] {
  display: none;
}

.register-confirmation {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
}

.register-confirmation-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 15, 29, 0.76);
  backdrop-filter: blur(5px);
}

.register-confirmation-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 570px);
  max-height: calc(100dvh - 48px);
  padding: 30px;
  overflow-y: auto;
  background: var(--white);
  border: 1px solid #d9e4ef;
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(2, 15, 29, 0.38);
}

.register-confirmation-dialog h2 {
  margin-bottom: 14px;
  font-size: 1.75rem;
}

.register-confirmation-dialog > p:not(.eyebrow) {
  margin: 0;
  color: #4b5d73;
}

.register-suggestions-status {
  min-height: 22px;
  margin-top: 16px !important;
  font-size: 0.86rem;
  font-weight: 750;
}

.register-slug-suggestions {
  display: grid;
  gap: 9px;
  margin: 14px 0;
  padding: 0;
  border: 0;
}

.register-slug-option {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 11px;
  align-items: center;
  min-height: 62px;
  padding: 10px 14px;
  color: var(--navy);
  background: #f7faff;
  border: 1px solid #d6e4f0;
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.register-slug-option:hover,
.register-slug-option:has(input:checked) {
  background: #fff8f2;
  border-color: var(--orange);
  box-shadow: 0 5px 16px rgba(2, 15, 29, 0.08);
}

.register-slug-option input {
  width: 18px;
  height: 18px;
  accent-color: var(--orange);
}

.register-slug-option > span {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.register-slug-option strong {
  overflow-wrap: anywhere;
}

.register-slug-option small {
  color: #147044;
  font-size: 0.78rem;
}

.register-slug-option.is-unavailable {
  opacity: 0.58;
  cursor: not-allowed;
}

.register-slug-option.is-unavailable:hover {
  background: #f7faff;
  border-color: #d6e4f0;
  box-shadow: none;
}

.register-slug-option.is-unavailable small {
  color: #b52d35;
}

.register-custom-slug {
  display: grid;
  gap: 7px;
  margin: 4px 0 20px;
  color: var(--navy);
  font-weight: 850;
}

.register-custom-slug[hidden] {
  display: none;
}

.register-custom-slug .register-slug-input {
  flex: 1 1 0;
  width: 0;
  min-width: 0;
  height: 56px;
  padding: 12px 14px;
  color: var(--navy);
  font: inherit;
  background: #f8fbff;
  border: 1px solid #cfddec;
  border-radius: 8px 0 0 8px;
  outline: none;
}

.register-custom-slug .register-slug-input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.14);
}

.register-confirmation-actions {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 12px;
}

.register-confirmation-actions button:disabled {
  opacity: 0.48;
  cursor: not-allowed;
  filter: grayscale(0.45);
}

body.register-dialog-open {
  overflow: hidden;
}

.register-field small {
  color: var(--muted);
  font-weight: 700;
}

.register-submit {
  min-height: 52px;
  margin-top: 4px;
  border: 0;
  cursor: pointer;
}

@media (max-width: 1280px) {
  .hero-grid {
    grid-template-columns: minmax(340px, 0.9fr) minmax(520px, 1.1fr);
    gap: 46px;
  }

  .metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .icon-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .feature-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-benefits li {
    padding: 0 18px;
  }

  .pricing-layout {
    grid-template-columns: 1fr;
  }

  .dashboard-grid {
    grid-template-columns: minmax(340px, 0.68fr) minmax(600px, 1.32fr);
    gap: 34px;
  }

  .dashboard-copy {
    padding-left: 0;
  }

  .dashboard-assurances {
    gap: 14px;
    font-size: 0.64rem;
  }

  .register-grid {
    grid-template-columns: 1fr;
  }

  .register-main {
    background: linear-gradient(180deg, #071a31 0%, #0d2d4e 52%, #f3f7fb 52%, #f3f7fb 100%);
  }
}

@media (max-width: 1040px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .primary-nav {
    display: none;
    order: 4;
    width: 100%;
    flex: none;
    padding: 12px 0;
    border-top: 1px solid var(--line);
  }

  .primary-nav.is-open {
    display: grid;
    gap: 16px;
  }

  .header-actions {
    margin-left: auto;
  }

  .hero-grid,
  .dashboard-grid,
  .app-testimonial-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    padding-bottom: 30px;
  }

  .hero-mascot {
    order: 2;
  }

  .dashboard-preview {
    order: 3;
    grid-column: auto;
    grid-row: auto;
  }

  .dashboard-section {
    padding-top: 72px;
  }

  .dashboard-copy {
    max-width: 620px;
  }

  .device-showcase {
    min-height: 600px;
    margin-top: 28px;
  }

  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-benefits {
    flex-wrap: wrap;
    row-gap: 16px;
  }

  .feature-benefits li + li {
    border-left: 0;
  }

  .feature-showcase-cta {
    grid-template-columns: 48px minmax(0, 1fr) auto;
  }

  .feature-more-link {
    grid-column: 2;
  }

  .steps article::after {
    display: none;
  }

  .pricing-grid,
  .testimonial-grid,
  .faq-grid,
  .summary-grid,
  .icon-card-grid.compact,
  .quickstart-grid,
  .wizard-steps,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .shell {
    width: calc(100% - 28px);
  }

  .brand img {
    width: 170px;
  }

  .header-actions,
  .button-row,
  .trust-list,
  .footer-bottom,
  .consent-banner {
    align-items: stretch;
    flex-direction: column;
  }

  .header-actions {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .hero {
    padding-top: 24px;
  }

  h1 {
    font-size: clamp(2.5rem, 13vw, 3.5rem);
  }

  .trust-list,
  .icon-card-grid,
  .feature-showcase-grid,
  .preview-panels,
  .steps,
  .form-grid,
  .choice-grid,
  .included-card,
  .app-promo,
  .mock-dashboard-body {
    grid-template-columns: 1fr;
  }

  .onboarding-head,
  .dashboard-top,
  .quickstart-head,
  .wizard-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .dashboard-preview {
    grid-template-columns: 1fr;
  }

  .preview-sidebar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .icon-card-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature-strip {
    padding: 72px 0 78px;
  }

  .desktop-break {
    display: none;
  }

  .feature-benefits {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-items: start;
    margin-bottom: 30px;
  }

  .feature-benefits li {
    padding: 0;
  }

  .feature-showcase-card {
    min-height: auto;
    padding: 22px 18px 18px;
  }

  .feature-showcase-card > p {
    min-height: 0;
  }

  .feature-preview {
    margin-top: 4px;
  }

  .feature-showcase-cta {
    grid-template-columns: 44px minmax(0, 1fr);
    padding: 18px;
  }

  .feature-showcase-cta .button,
  .feature-more-link {
    grid-column: 1 / -1;
    width: 100%;
  }

  .feature-more-link {
    justify-content: center;
  }

  .object-preview {
    grid-template-columns: minmax(0, 1fr) 94px;
  }

  .device-showcase {
    min-height: 350px;
    margin-top: 24px;
    padding-right: 0;
  }

  .laptop-preview {
    left: 0;
    right: 30px;
    top: 18px;
    padding: 8px 8px 13px;
    border-width: 2px;
    border-bottom-width: 5px;
    border-radius: 18px 18px 8px 8px;
  }

  .laptop-preview::after {
    bottom: -16px;
    height: 15px;
  }

  .phone-preview {
    position: absolute;
    right: -28px;
    bottom: -80px;
    width: 226px;
    min-height: 472px;
    margin-top: 0;
    transform: scale(0.62);
    transform-origin: right bottom;
    border-radius: 38px;
  }

  .dashboard-copy {
    padding-left: 0;
  }

  .dashboard-copy h2 {
    font-size: clamp(2.7rem, 13vw, 3.5rem);
  }

  .dashboard-assurances {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 28px;
    white-space: normal;
  }

  .pricing-head-panel {
    padding: 26px 18px;
  }

  .register-main {
    padding: 34px 0 46px;
  }

  .register-card {
    padding: 22px;
  }

  .register-form {
    grid-template-columns: 1fr;
  }

  .register-slug-suffix {
    padding-inline: 8px;
    font-size: 0.78rem;
  }

  .register-slug-input {
    font-size: 1rem;
  }

  .register-confirmation {
    align-items: end;
    padding: 14px;
  }

  .register-confirmation-dialog {
    max-height: calc(100dvh - 28px);
    padding: 24px 18px;
  }

  .register-confirmation-actions {
    grid-template-columns: 1fr;
  }

  .register-plan-summary {
    width: 100%;
  }

  .register-steps li {
    grid-template-columns: 38px 1fr;
  }
}
