:root {
  --navy: #1b3068;
  --navy-950: #0d1834;
  --navy-900: #142653;
  --teal: #00b8ab;
  --teal-dark: #007d75;
  --green: #15803d;
  --amber: #92400e;
  --ink: #132033;
  --muted: #536276;
  --line: #d7e0ea;
  --surface: #f4f7fb;
  --surface-strong: #eef3f8;
  --white: #ffffff;
  --danger: #b42318;
  --shadow-sm: 0 10px 28px rgba(20, 38, 83, 0.08);
  --shadow: 0 20px 58px rgba(20, 38, 83, 0.12);
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 8px;
  --radius: var(--radius-md);
  --space-section: clamp(42px, 5vw, 64px);
  --container: min(1160px, calc(100% - 40px));
  --header-height: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
  position: fixed;
  top: var(--scroll-lock-top, 0);
  right: 0;
  left: 0;
  width: 100%;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a,
input,
textarea,
select {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(0, 184, 171, 0.45);
  outline-offset: 3px;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1 {
  max-width: 660px;
  margin-bottom: 20px;
  color: var(--navy-950);
  font-size: clamp(2.45rem, 5vw, 4.15rem);
  line-height: 1.04;
}

h2 {
  margin-bottom: 16px;
  color: var(--navy-950);
  font-size: clamp(1.85rem, 3.2vw, 2.65rem);
  line-height: 1.08;
}

h3 {
  color: var(--navy-900);
  font-size: 1.26rem;
  line-height: 1.25;
}

h4 {
  margin: 0 0 12px;
  color: var(--navy-950);
  font-size: 1rem;
}

p {
  max-width: 72ch;
}

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

section[id] {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 12px 16px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--navy-950);
  font-weight: 800;
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.section-pad {
  width: var(--container);
  margin: 0 auto;
  padding: var(--space-section) 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal-dark);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: min(1220px, calc(100% - 28px));
  min-height: 72px;
  margin: 12px auto 0;
  padding: 12px 14px 12px 20px;
  border: 1px solid rgba(215, 224, 234, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.brand img {
  width: 142px;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  color: #334155;
  font-size: 0.94rem;
  font-weight: 700;
}

.main-nav a {
  min-height: 44px;
  padding: 11px 12px;
  border-radius: var(--radius);
  transition: color 0.18s ease, background 0.18s ease;
}

.main-nav a:hover,
.main-nav a[aria-current="location"] {
  color: var(--navy);
  background: #edf8f7;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 800;
  text-align: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.header-cta,
.btn-primary {
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 14px 30px rgba(27, 48, 104, 0.2);
}

.header-cta:hover,
.btn-primary:hover {
  background: var(--navy-900);
  transform: translateY(-2px);
}

.btn-secondary {
  color: var(--navy);
  background: var(--white);
  border-color: var(--line);
}

.btn-secondary:hover {
  border-color: rgba(27, 48, 104, 0.34);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.btn-tertiary {
  color: var(--navy);
  background: #eef3f8;
  border-color: #cbd7e5;
}

.btn-tertiary:hover {
  background: var(--white);
  border-color: rgba(27, 48, 104, 0.3);
  transform: translateY(-2px);
}

.btn[disabled] {
  cursor: not-allowed;
  opacity: 0.72;
  transform: none;
}

.wa-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #25d366;
  box-shadow: 0 0 0 5px rgba(37, 211, 102, 0.14);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy);
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  align-items: center;
  gap: clamp(34px, 5vw, 58px);
  min-height: calc(88vh - 92px);
  padding-top: 54px;
}

.hero-text {
  max-width: 600px;
  color: #405066;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.hero-focus {
  max-width: 590px;
  margin: 0;
  color: var(--navy);
  font-size: 0.98rem;
}

.hero-focus strong {
  font-weight: 820;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 24px;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 700px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.feature-strip li {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
}

.feature-strip strong,
.feature-strip span {
  display: block;
}

.feature-strip strong {
  color: var(--navy);
}

.feature-strip span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.86rem;
}

.hero-visual {
  position: relative;
}

.hero-visual::before {
  position: absolute;
  inset: 10% -5% -7% 14%;
  content: "";
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(0, 184, 171, 0.16), rgba(27, 48, 104, 0.08));
  transform: rotate(-3deg);
}

.dashboard-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(215, 224, 234, 0.92);
  border-radius: var(--radius-lg);
  background: #f8fbff;
  box-shadow: var(--shadow);
}

.dash-top {
  display: flex;
  gap: 8px;
  padding: 16px 18px;
  background: var(--navy-950);
}

.dash-top span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.3);
}

.dash-grid {
  display: grid;
  grid-template-columns: 70px 1fr;
  min-height: 420px;
}

.dash-sidebar {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  padding-top: 28px;
  background: var(--navy);
}

.dash-sidebar i {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
}

.dash-sidebar i:first-child {
  background: var(--teal);
}

.dash-content {
  padding: 24px;
}

.dash-title {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 20px;
}

.dash-title img {
  width: 42px;
  height: 42px;
}

.dash-title span,
.dash-title strong {
  display: block;
}

.dash-title span {
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.dash-title strong {
  color: var(--navy-950);
  font-size: 1.14rem;
}

.kpi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.kpi-row div,
.process-card,
.table-preview {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.kpi-row div {
  padding: 14px;
}

.kpi-row strong,
.kpi-row span {
  display: block;
}

.kpi-row strong {
  color: var(--navy);
  font-size: 1.08rem;
}

.kpi-row span {
  color: var(--muted);
  font-size: 0.82rem;
}

.process-card {
  padding: 16px;
  margin-bottom: 16px;
}

.process-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.86rem;
}

.process-head b {
  color: var(--teal-dark);
}

.process-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.process-line i {
  height: 8px;
  border-radius: 99px;
  background: #d8e0eb;
}

.process-line .done {
  background: var(--navy);
}

.process-line .active {
  background: var(--teal);
}

.table-preview {
  display: grid;
  gap: 11px;
  padding: 16px;
}

.table-preview span {
  height: 16px;
  border-radius: 99px;
  background: linear-gradient(90deg, #dbe5f1 40%, #eef3f8 40%);
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 22px;
}

.pillars article,
.product-card,
.comparison-table,
.company-card,
.contact-form,
.contact-panel,
.problem-solution > div,
.modules,
.flow,
.dev-note {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-sm);
}

.pillars article {
  padding: 24px;
}

.pillars span {
  color: var(--teal-dark);
  font-weight: 900;
}

.pillars h3 {
  margin-top: 14px;
  font-size: 1.22rem;
}

.pillars p,
.section-heading p,
.product-card p,
.callout span,
.company-card p,
.contact-panel p,
.preview-copy p {
  color: var(--muted);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading.align-left {
  margin: 0;
  text-align: left;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 26px;
}

.product-card--available {
  background: linear-gradient(135deg, #ffffff, #edf8f7);
}

.product-card--market {
  background: linear-gradient(135deg, #ffffff, #eef4ff);
}

.product-top {
  display: grid;
  gap: 12px;
  margin-bottom: 16px;
}

.product-logo {
  width: min(248px, 100%);
  min-height: 72px;
  display: flex;
  align-items: center;
}

.product-card:first-child .product-logo img {
  width: 94px;
}

.product-card--market .product-logo img {
  width: 220px;
}

.product-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 12px 24px rgba(20, 38, 83, 0.14);
}

.product-audience {
  width: fit-content;
  padding: 6px 9px;
  border-radius: var(--radius-sm);
  color: var(--navy);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 850;
}

.benefit-list,
.module-category-grid ul,
.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.benefit-list {
  margin: 20px 0 24px;
}

.benefit-list li,
.module-category-grid li {
  padding: 11px 12px;
  border: 1px solid rgba(27, 48, 104, 0.1);
  border-radius: var(--radius);
  color: var(--navy);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 720;
}

.product-cta {
  margin-top: auto;
}

.product-card--soon {
  color: var(--ink);
  background: #f8fbff;
  border-style: dashed;
  box-shadow: none;
}

.product-card--soon h3 {
  color: var(--navy-900);
}

.product-card--soon p {
  color: var(--muted);
}

.route-map {
  width: 100%;
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: none;
}

.status-badge {
  width: fit-content;
  padding: 7px 10px;
  border: 1px solid rgba(234, 179, 8, 0.38);
  border-radius: var(--radius-sm);
  color: #78350f;
  background: #fffbeb;
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.status-badge--light {
  border-color: rgba(0, 184, 171, 0.24);
  color: var(--teal-dark);
  background: rgba(0, 184, 171, 0.08);
}

.comparison {
  padding-top: 30px;
}

.comparison-table {
  overflow: hidden;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--white);
}

.comparison-table th,
.comparison-table td {
  padding: 15px 18px;
  border-bottom: 1px solid var(--line);
  color: #334155;
  text-align: left;
  vertical-align: top;
}

.comparison-table th + th,
.comparison-table td + td,
.comparison-table th + td {
  border-left: 1px solid var(--line);
}

.comparison-table tbody tr:last-child th,
.comparison-table tbody tr:last-child td {
  border-bottom: 0;
}

.comparison-table thead th {
  color: var(--white);
  background: var(--navy);
  font-weight: 850;
}

.comparison-table tbody th {
  width: 26%;
  color: var(--navy);
  font-weight: 850;
  background: #f8fbff;
}

.comparison-cell-label {
  display: none;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 34px;
  align-items: center;
  margin-bottom: 24px;
}

.callout {
  padding: 26px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--navy);
  box-shadow: var(--shadow);
}

.callout strong,
.callout span {
  display: block;
}

.callout strong {
  margin-bottom: 12px;
  font-size: 1.18rem;
  line-height: 1.28;
}

.callout span {
  color: rgba(255, 255, 255, 0.78);
}

.market-callout {
  background: linear-gradient(160deg, var(--navy-950), #1d4c7e);
}

.callout-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.callout-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  object-fit: cover;
}

.callout-brand b,
.callout-brand small {
  display: block;
}

.callout-brand b {
  color: var(--white);
  font-size: 1.28rem;
}

.callout-brand small {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.system-preview {
  display: grid;
  grid-template-columns: minmax(240px, 0.34fr) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  margin: 26px 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(244, 247, 251, 0.9));
  box-shadow: var(--shadow);
}

.preview-copy h3 {
  margin: 14px 0 10px;
}

.app-window {
  overflow: hidden;
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  min-height: 410px;
  border: 1px solid rgba(215, 224, 234, 0.94);
  border-radius: var(--radius-lg);
  background: #f8fbff;
  box-shadow: 0 16px 36px rgba(20, 38, 83, 0.12);
}

.app-sidebar {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 20px 14px;
  color: rgba(255, 255, 255, 0.76);
  background: var(--navy);
}

.market-window .app-sidebar {
  background: #10233f;
}

.app-sidebar img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  margin-bottom: 14px;
}

.market-window .app-sidebar .sidebar-icon {
  border-radius: 12px;
  object-fit: cover;
}

.app-sidebar span {
  display: block;
  min-height: 34px;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 760;
}

.app-sidebar span.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
}

.app-screen {
  min-width: 0;
  padding: 20px;
}

.app-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
}

.app-toolbar small,
.app-toolbar strong {
  display: block;
}

.app-toolbar small {
  color: var(--teal-dark);
  font-size: 0.74rem;
  font-weight: 850;
  text-transform: uppercase;
}

.app-toolbar strong {
  color: var(--navy-950);
  font-size: 1.16rem;
}

.mock-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy);
  font-size: 0.84rem;
  font-weight: 800;
}

.app-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 12px;
}

.app-kpis > div,
.app-panel,
.phone-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.app-kpis > div {
  padding: 12px;
}

.app-kpis span,
.app-kpis strong,
.app-kpis i {
  display: block;
}

.app-kpis span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 720;
}

.app-kpis strong {
  color: var(--navy);
  font-size: 1.08rem;
}

.app-kpis i {
  color: var(--muted);
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 760;
}

.app-kpis i.ok {
  color: var(--green);
}

.app-kpis i.warn {
  color: var(--amber);
}

.app-board {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 10px;
}

.app-panel {
  min-height: 160px;
  padding: 14px;
}

.app-board h4 {
  margin-bottom: 12px;
}

.app-board p {
  color: var(--muted);
  font-size: 0.9rem;
}

.app-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #edf2f7;
}

.app-row:last-child {
  border-bottom: 0;
}

.app-row b {
  color: #24364d;
  font-size: 0.84rem;
}

.app-row span {
  flex: 0 0 auto;
  padding: 4px 8px;
  border-radius: 999px;
  color: var(--teal-dark);
  background: rgba(0, 184, 171, 0.1);
  font-size: 0.72rem;
  font-weight: 850;
}

.mini-flow,
.route-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 20px 0;
}

.mini-flow i,
.route-line i {
  height: 9px;
  border-radius: 99px;
  background: var(--teal);
}

.mini-flow i.muted,
.route-line i:last-child {
  background: #d8e0eb;
}

.market-device-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 16px;
  align-items: center;
}

.phone-preview {
  min-height: 360px;
  padding: 16px;
  border: 9px solid #10233f;
  border-radius: 24px;
  background: #f8fbff;
  box-shadow: 0 16px 34px rgba(20, 38, 83, 0.18);
}

.phone-top {
  width: 52px;
  height: 5px;
  margin: 0 auto 16px;
  border-radius: 999px;
  background: #c8d3df;
}

.phone-app-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
  border-radius: 14px;
  object-fit: cover;
}

.phone-preview strong {
  display: block;
  color: var(--navy-950);
  font-size: 1rem;
}

.status-pill {
  display: inline-flex;
  margin: 9px 0 12px;
  padding: 5px 8px;
  border-radius: 999px;
  color: #065f46;
  background: #dcfce7;
  font-size: 0.7rem;
  font-weight: 850;
}

.phone-card {
  display: grid;
  gap: 3px;
  margin-top: 9px;
  padding: 12px;
}

.phone-card b {
  color: var(--navy);
}

.phone-card small {
  color: var(--muted);
}

.problem-solution {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.problem-solution > div,
.modules,
.flow {
  padding: 26px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: #405066;
}

.check-list li::before {
  position: absolute;
  top: 2px;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  color: var(--white);
  background: var(--teal-dark);
  content: "✓";
  font-size: 0.75rem;
  font-weight: 900;
  text-align: center;
  line-height: 18px;
}

.check-list--muted li::before {
  background: var(--navy);
}

.modules,
.flow {
  margin-top: 16px;
  padding: 18px 0 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.module-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.module-heading h3,
.module-heading .eyebrow {
  margin-bottom: 0;
}

.module-category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.module-category-grid article {
  min-height: 184px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fbff;
}

.module-extra[hidden] {
  display: none;
}

.inline-status {
  display: inline-block;
  margin-left: 4px;
  color: var(--amber);
  font-size: 0.82em;
  font-weight: 850;
}

.flow ol {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 9px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: flow;
}

.flow li {
  position: relative;
  min-height: 112px;
  padding: 40px 12px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--navy);
  background: var(--white);
  font-size: 0.84rem;
}

.flow li strong,
.flow li span {
  display: block;
}

.flow li strong {
  margin-bottom: 5px;
  font-weight: 850;
}

.flow li span {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.flow li::before {
  position: absolute;
  top: 10px;
  left: 10px;
  counter-increment: flow;
  content: counter(flow, decimal-leading-zero);
  color: var(--teal-dark);
  font-weight: 900;
}

.dev-note {
  display: grid;
  gap: 6px;
  margin-top: 16px;
  padding: 20px 22px;
  border-color: rgba(234, 179, 8, 0.38);
  background: #fffbeb;
}

.dev-note strong {
  color: var(--amber);
}

.dev-note span {
  color: #6b4f16;
}

.mockup-caption {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-align: right;
}

.system-preview .mockup-caption {
  grid-column: 1 / -1;
}

.section-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 22px;
  padding: 22px 24px;
  border: 1px solid rgba(27, 48, 104, 0.12);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #ffffff, #edf8f7);
  box-shadow: var(--shadow-sm);
}

.section-cta--compact {
  margin-top: 16px;
}

.section-cta h3 {
  margin-bottom: 6px;
}

.section-cta p {
  margin-bottom: 0;
  color: var(--muted);
}

.section-cta .btn {
  flex: 0 0 auto;
}

.company-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 32px;
  padding: 32px;
}

.company-data {
  display: grid;
  gap: 12px;
  margin: 0;
}

.company-data div {
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fbff;
}

.company-data dt {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.company-data dd {
  margin: 5px 0 0;
  color: var(--navy);
  font-weight: 760;
}

.company-data a {
  color: var(--teal-dark);
}

.contact {
  padding-top: 34px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 18px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 26px;
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field--wide {
  grid-column: 1 / -1;
}

.contact-form label {
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 780;
}

.contact-form label span {
  color: var(--danger);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: #f8fbff;
}

.contact-form input,
.contact-form select {
  min-height: 48px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
  padding: 13px 14px;
}

.contact-form input:hover,
.contact-form textarea:hover,
.contact-form select:hover {
  border-color: #b6c5d6;
}

.contact-form input[aria-invalid="true"],
.contact-form textarea[aria-invalid="true"],
.contact-form select[aria-invalid="true"] {
  border-color: var(--danger);
  background: #fffafa;
}

.field-help,
.field-error,
.form-note,
.privacy-note,
.form-status {
  margin: 0;
  font-size: 0.84rem;
}

.field-help,
.form-note,
.privacy-note {
  color: var(--muted);
}

.privacy-note {
  max-width: none;
  padding-top: 2px;
  font-size: 0.9rem;
}

.field-error {
  min-height: 1.25em;
  color: var(--danger);
  font-weight: 700;
}

.form-status {
  min-height: 1.35em;
  color: var(--navy);
  font-weight: 760;
}

.form-status.is-success {
  color: var(--green);
}

.form-status.is-error {
  color: var(--danger);
}

.contact-panel {
  padding: 28px;
  color: var(--white);
  background: linear-gradient(160deg, var(--navy-950), var(--navy));
}

.contact-panel img {
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
}

.contact-panel h3 {
  color: var(--white);
}

.contact-panel p,
.contact-panel a {
  color: rgba(255, 255, 255, 0.82);
}

.contact-panel .btn {
  margin-top: 16px;
  color: var(--navy);
}

.floating-whatsapp {
  position: fixed;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--white);
  background: #1f9d55;
  box-shadow: 0 18px 40px rgba(22, 163, 74, 0.28);
  font-weight: 850;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.floating-whatsapp.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}

.floating-whatsapp:hover {
  transform: translateY(-2px);
}

.floating-whatsapp > span:first-child {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--white);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(180px, auto);
  align-items: center;
  gap: 20px;
  width: var(--container);
  margin: 0 auto;
  padding: 32px 0 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer img {
  width: 124px;
}

.footer-brand p {
  margin: 8px 0 0;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 14px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 760;
}

.footer-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.footer-contact {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-style: normal;
  font-size: 0.9rem;
  text-align: right;
}

.footer-contact a {
  color: var(--teal-dark);
  font-weight: 760;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 1080px) {
  .hero,
  .split,
  .problem-solution,
  .company-card,
  .contact-grid,
  .system-preview,
  .market-device-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual::before {
    display: none;
  }

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

  .product-card {
    min-height: auto;
  }

  .module-category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .flow ol {
    grid-template-columns: repeat(3, 1fr);
  }

  .main-nav {
    display: none;
  }

  .site-header {
    grid-template-columns: auto auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav.is-open {
    position: fixed;
    top: 88px;
    left: 14px;
    right: 14px;
    z-index: 70;
    display: grid;
    gap: 0;
    overflow: hidden;
    max-height: calc(100dvh - 110px);
    overflow-y: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open a {
    min-height: 52px;
    padding: 16px 20px;
    border-bottom: 1px solid var(--line);
  }

  .main-nav.is-open a:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 760px) {
  :root {
    --container: min(100% - 28px, 1160px);
    --header-height: 78px;
  }

  .section-pad {
    padding: 56px 0;
  }

  .site-header {
    grid-template-columns: auto auto;
    min-height: 64px;
    margin-top: 8px;
    padding: 10px 12px 10px 14px;
  }

  .brand img {
    width: 124px;
  }

  .header-cta {
    display: none;
  }

  .main-nav.is-open {
    top: 78px;
    max-height: calc(100dvh - 92px);
  }

  .hero {
    padding-top: 44px;
  }

  h1 {
    font-size: clamp(2.35rem, 12vw, 3.5rem);
  }

  h2 {
    font-size: clamp(1.75rem, 9vw, 2.45rem);
  }

  .hero-actions,
  .module-heading,
  .section-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .btn,
  .module-heading .btn,
  .contact-panel .btn,
  .contact-form .btn,
  .section-cta .btn {
    width: 100%;
  }

  .feature-strip,
  .pillars,
  .kpi-row,
  .app-kpis,
  .app-board,
  .module-category-grid,
  .flow ol,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .dash-grid {
    grid-template-columns: 54px 1fr;
    min-height: 360px;
  }

  .dash-content {
    padding: 16px;
  }

  .process-head {
    display: grid;
  }

  .comparison-table {
    display: grid;
    gap: 14px;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

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

  .comparison-table tbody,
  .comparison-table tr {
    display: grid;
    gap: 14px;
  }

  .comparison-table tbody {
    width: 100%;
  }

  .comparison-table tr {
    display: grid;
    grid-template-columns: 1fr;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-sm);
  }

  .comparison-table th,
  .comparison-table td,
  .comparison-table th + th,
  .comparison-table td + td,
  .comparison-table th + td,
  .comparison-table tbody tr:last-child th,
  .comparison-table tbody tr:last-child td {
    border: 0;
  }

  .comparison-table tbody th {
    width: auto;
    padding: 0 0 10px;
    background: transparent;
  }

  .comparison-table td {
    display: grid;
    gap: 3px;
    padding: 10px 0;
    border-top: 1px solid var(--line);
  }

  .comparison-cell-label {
    display: block;
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 850;
    text-transform: uppercase;
  }

  .app-window {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .app-sidebar {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 12px;
  }

  .app-sidebar img,
  .market-window .app-sidebar .sidebar-icon {
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    margin: 0 8px 0 0;
  }

  .app-sidebar span {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .app-screen {
    padding: 16px;
  }

  .app-toolbar {
    display: grid;
  }

  .mock-action {
    width: 100%;
  }

  .market-device-grid {
    justify-items: stretch;
  }

  .phone-preview {
    max-width: 260px;
    width: 100%;
    justify-self: center;
  }

  .product-card,
  .pillars article,
  .problem-solution > div,
  .modules,
  .flow,
  .dev-note,
  .system-preview,
  .company-card,
  .contact-form,
  .contact-panel {
    padding: 20px;
  }

  .company-card {
    gap: 22px;
  }

  .section-cta {
    display: grid;
    padding: 20px;
  }

  .form-field--wide {
    grid-column: auto;
  }

  .site-footer {
    display: grid;
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .footer-nav {
    justify-content: flex-start;
  }

  .footer-contact {
    text-align: left;
  }

  .floating-whatsapp {
    right: max(16px, env(safe-area-inset-right));
    width: 52px;
    min-width: 52px;
    min-height: 52px;
    margin: 0;
    padding: 0;
    justify-content: center;
  }

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

@media (max-width: 380px) {
  :root {
    --container: min(100% - 22px, 1160px);
  }

  .product-card,
  .pillars article,
  .problem-solution > div,
  .modules,
  .flow,
  .dev-note,
  .system-preview,
  .company-card,
  .contact-form,
  .contact-panel {
    padding: 16px;
  }

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

  .dash-sidebar {
    display: none;
  }

}
