: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;
}

.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 {
  padding: 110px 0 120px;
  background: #ffffff;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.55fr) minmax(680px, 1.1fr);
  gap: clamp(62px, 6vw, 110px);
  align-items: center;
}

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

.dashboard-copy p {
  color: #34445a;
  font-size: 1.05rem;
}

.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-height: 420px;
  padding-right: 115px;
}

.laptop-preview {
  padding: 16px 16px 28px;
  background: #0b1320;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.laptop-preview::after {
  content: "";
  display: block;
  width: 106%;
  height: 16px;
  margin: 18px -3% -28px;
  background: linear-gradient(180deg, #2d3541, #0b1320);
  border-radius: 0 0 40px 40px;
}

.laptop-screen {
  min-height: 340px;
  padding: 18px;
  background: #f7f9fc;
  border-radius: 7px;
}

.metric-grid.compact article {
  min-height: 92px;
}

.mock-dashboard-body {
  display: grid;
  grid-template-columns: 1fr 180px;
  gap: 18px;
  margin-top: 18px;
}

.mock-dashboard-body > div {
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.mock-dashboard-body h3 {
  font-size: 1rem;
}

.mock-dashboard-body p {
  color: var(--muted);
}

.donut {
  min-height: 190px;
  background: conic-gradient(var(--orange) 0 28%, var(--blue) 28% 72%, var(--green) 72% 100%);
  border-radius: 50%;
  position: relative;
}

.donut::after {
  content: "";
  position: absolute;
  inset: 38px;
  background: var(--white);
  border-radius: 50%;
}

.phone-preview {
  position: absolute;
  right: 6px;
  bottom: 8px;
  width: 180px;
  min-height: 330px;
  padding: 26px 14px 18px;
  display: grid;
  gap: 12px;
  align-content: start;
  background: var(--white);
  border: 8px solid #0b1320;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.phone-preview span {
  display: block;
  padding: 13px 10px;
  color: var(--white);
  background: var(--orange);
  border-radius: 8px;
  font-weight: 900;
  font-size: 0.84rem;
}

.phone-preview span:nth-child(3) {
  background: var(--blue);
}

.phone-preview span:nth-child(4) {
  background: var(--green);
}

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

.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;
}

.register-field {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-weight: 850;
}

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

.register-field input,
.register-field select {
  width: 100%;
  min-height: 50px;
  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-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));
  }

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

  .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;
  }

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

  .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,
  .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);
  }

  .device-showcase {
    min-height: auto;
    padding-right: 0;
  }

  .phone-preview {
    position: static;
    width: 100%;
    min-height: auto;
    margin-top: 18px;
    border-radius: 8px;
  }

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

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

  .register-card {
    padding: 22px;
  }

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

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

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