:root {
  --ss-font: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --navy-950: #051225;
  --navy-900: #071a36;
  --navy-800: #0b2850;
  --navy-700: #123f75;
  --blue-600: #245fcb;
  --blue-500: #3678ee;
  --blue-100: #e8f0ff;
  --orange-600: #f06b32;
  --orange-500: #ff7a3d;
  --orange-100: #fff0e8;
  --ink: #10213b;
  --muted: #60708a;
  --line: #dfe6f0;
  --surface: #ffffff;
  --surface-soft: #f6f8fc;
  --success: #18a66a;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --shadow-sm: 0 10px 30px rgba(20, 45, 83, 0.08);
  --shadow-lg: 0 30px 80px rgba(7, 26, 54, 0.16);
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--surface);
  font-family: var(--ss-font);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

html,
body,
button,
input,
textarea,
select {
  font-family: var(--ss-font);
}

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

img,
svg {
  display: block;
  max-width: 100%;
}

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

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

h1,
h2,
h3 {
  color: var(--navy-950);
  font-weight: 800;
  letter-spacing: -0.035em;
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(54, 120, 238, 0.5);
  outline-offset: 4px;
}

.site-container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: #fff;
  background: var(--navy-950);
  border-radius: 10px;
  transform: translateY(-180%);
  transition: transform 0.2s ease;
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(218, 227, 239, 0.78);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

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

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 144px;
  height: auto;
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav a {
  position: relative;
  color: #40516c;
  font-size: 0.88rem;
  font-weight: 650;
  transition: color 0.2s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--orange-500);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.site-nav a:hover {
  color: var(--navy-900);
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-login {
  color: var(--navy-800);
  font-size: 0.9rem;
  font-weight: 750;
}

.header-login:hover {
  color: var(--orange-600);
}

.button {
  min-height: 48px;
  padding: 0 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

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

.button svg,
.text-link svg,
.cta-login svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-small {
  min-height: 42px;
  padding-inline: 19px;
  border-radius: 12px;
  font-size: 0.86rem;
}

.button-large {
  min-height: 56px;
  padding-inline: 28px;
  border-radius: 16px;
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--orange-500), #f15e27);
  box-shadow: 0 12px 28px rgba(240, 107, 50, 0.25);
}

.button-primary:hover {
  box-shadow: 0 16px 34px rgba(240, 107, 50, 0.34);
}

.button-ghost {
  color: var(--navy-900);
  border-color: #ced8e6;
  background: rgba(255, 255, 255, 0.74);
}

.button-ghost:hover {
  border-color: #aebdd2;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.button-dark {
  color: #fff;
  background: var(--navy-900);
  box-shadow: 0 12px 30px rgba(7, 26, 54, 0.18);
}

.button-white {
  color: var(--navy-900);
  background: #fff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.17);
}

.eyebrow {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-600);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  line-height: 1.25;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 25px;
  height: 2px;
  flex: 0 0 auto;
  border-radius: 2px;
  background: var(--orange-500);
}

.eyebrow.light {
  color: #91b5ef;
}

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  border-bottom: 1px solid #e5eaf2;
  background:
    linear-gradient(120deg, rgba(241, 246, 255, 0.86) 0%, rgba(255, 255, 255, 0.98) 43%, rgba(250, 252, 255, 0.96) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(18, 63, 117, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 63, 117, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to right, #000, transparent 68%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(8px);
}

.hero-glow-one {
  top: -240px;
  left: -180px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(54, 120, 238, 0.15), transparent 67%);
}

.hero-glow-two {
  right: -240px;
  bottom: -320px;
  width: 720px;
  height: 720px;
  background: radial-gradient(circle, rgba(255, 122, 61, 0.13), transparent 65%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 720px;
  padding-block: 86px 92px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  align-items: center;
  gap: 66px;
}

.hero-copy {
  max-width: 570px;
}

.hero h1 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 5.1vw, 5rem);
  line-height: 0.99;
}

.hero h1 em {
  color: var(--orange-600);
  font-style: normal;
}

.hero-lead {
  max-width: 550px;
  margin-bottom: 31px;
  color: var(--muted);
  font-size: clamp(1.03rem, 1.3vw, 1.18rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.hero-assurances {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 23px;
}

.hero-assurances span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #5d6e87;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-assurances svg {
  width: 16px;
  height: 16px;
  padding: 2px;
  color: #fff;
  background: var(--success);
  border-radius: 50%;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-product {
  position: relative;
  min-height: 525px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-orbit {
  position: absolute;
  border: 1px solid rgba(54, 120, 238, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.product-orbit-one {
  width: 550px;
  height: 550px;
}

.product-orbit-two {
  width: 680px;
  height: 680px;
  border-style: dashed;
  border-color: rgba(240, 107, 50, 0.1);
}

.trial-card {
  position: absolute;
  z-index: 5;
  top: 1px;
  right: -10px;
  width: 290px;
  padding: 15px 17px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 17px;
  background: linear-gradient(135deg, var(--navy-900), #123f75);
  box-shadow: 0 17px 40px rgba(7, 26, 54, 0.25);
}

.trial-card-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  padding: 10px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--orange-500), #f45e24);
}

.trial-card-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.trial-card span,
.trial-card strong {
  display: block;
}

.trial-card span {
  margin-bottom: 2px;
  color: #aac8f5;
  font-size: 0.68rem;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.trial-card strong {
  font-size: 0.82rem;
  line-height: 1.35;
}

.product-window {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 625px;
  overflow: hidden;
  border: 1px solid rgba(173, 189, 212, 0.72);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-lg);
  transform: perspective(1400px) rotateY(-2.6deg) rotateX(1.1deg);
}

.window-topbar {
  min-height: 42px;
  padding: 0 15px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  color: #6e7d94;
  border-bottom: 1px solid #e8edf4;
  background: #f9fbfd;
  font-size: 0.62rem;
  font-weight: 700;
}

.window-dots {
  display: flex;
  gap: 5px;
}

.window-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d1d9e5;
}

.window-dots i:first-child {
  background: #ff8c62;
}

.window-dots i:nth-child(2) {
  background: #f5c250;
}

.window-dots i:last-child {
  background: #53c898;
}

.live-status {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #398565;
}

.live-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #32b47c;
  box-shadow: 0 0 0 4px rgba(50, 180, 124, 0.11);
}

.window-body {
  min-height: 372px;
  display: flex;
  background: #f5f7fb;
}

.mock-sidebar {
  width: 55px;
  flex: 0 0 auto;
  padding: 17px 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 18px;
  background: var(--navy-900);
}

.mock-brand {
  width: 25px;
  height: 25px;
  margin-bottom: 7px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 8px;
  background: var(--orange-500);
  font-size: 0.66rem;
  font-weight: 900;
}

.mock-sidebar i {
  width: 16px;
  height: 4px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.22);
}

.mock-sidebar i.active {
  width: 24px;
  height: 24px;
  border: 6px solid rgba(255, 255, 255, 0.09);
  background: #fff;
}

.mock-content {
  min-width: 0;
  flex: 1;
  padding: 23px;
}

.mock-heading {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mock-heading small,
.mock-heading strong {
  display: block;
}

.mock-heading small {
  margin-bottom: 2px;
  color: #8390a4;
  font-size: 0.55rem;
  font-weight: 650;
}

.mock-heading strong {
  color: var(--navy-900);
  font-size: 0.88rem;
}

.mock-heading > span {
  padding: 5px 9px;
  color: #267857;
  border: 1px solid #c7ebdc;
  border-radius: 7px;
  background: #eaf8f2;
  font-size: 0.53rem;
  font-weight: 800;
}

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

.mock-stat-grid article {
  min-width: 0;
  padding: 12px;
  border: 1px solid #e4e9f1;
  border-radius: 11px;
  background: #fff;
  box-shadow: 0 6px 16px rgba(34, 60, 94, 0.04);
}

.mock-stat-icon {
  width: 25px;
  height: 25px;
  margin-bottom: 9px;
  padding: 6px;
  display: grid;
  place-items: center;
  border-radius: 8px;
}

.mock-stat-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mock-stat-icon.sales {
  color: #2e6fda;
  background: #e9f1ff;
}

.mock-stat-icon.orders {
  color: #e2632e;
  background: #fff0e8;
}

.mock-stat-icon.kitchen {
  color: #23805e;
  background: #e6f7f0;
}

.mock-stat-grid small,
.mock-stat-grid strong {
  overflow: hidden;
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.mock-stat-grid small {
  color: #8995a7;
  font-size: 0.48rem;
}

.mock-stat-grid strong {
  margin: 2px 0 8px;
  color: #263853;
  font-size: 0.62rem;
}

.mock-line {
  display: block;
  height: 3px;
  border-radius: 5px;
  background: #e4eaf2;
}

.mock-line.long {
  width: 80%;
}

.mock-line.medium {
  width: 64%;
}

.mock-line.short {
  width: 48%;
}

.mock-dashboard-grid {
  margin-top: 11px;
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 10px;
}

.mock-chart-card,
.mock-activity-card {
  min-height: 150px;
  padding: 13px;
  border: 1px solid #e4e9f1;
  border-radius: 11px;
  background: #fff;
}

.mock-card-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #33455f;
  font-size: 0.56rem;
  font-weight: 800;
}

.mock-card-title i {
  width: 15px;
  height: 3px;
  border-radius: 4px;
  background: #e0e6ee;
}

.mock-chart {
  height: 87px;
  padding-top: 17px;
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  gap: 8px;
  border-bottom: 1px solid #e6ebf2;
  background: repeating-linear-gradient(to bottom, transparent, transparent 21px, #f1f4f8 22px);
}

.mock-chart span {
  width: 12px;
  min-height: 18px;
  border-radius: 4px 4px 1px 1px;
  background: linear-gradient(to top, #316fd6, #78a5f0);
}

.mock-chart span:nth-child(1) {
  height: 35%;
}

.mock-chart span:nth-child(2) {
  height: 52%;
}

.mock-chart span:nth-child(3) {
  height: 43%;
}

.mock-chart span:nth-child(4) {
  height: 74%;
  background: linear-gradient(to top, #ef6d35, #ff9a6c);
}

.mock-chart span:nth-child(5) {
  height: 62%;
}

.mock-chart span:nth-child(6) {
  height: 83%;
  background: linear-gradient(to top, #ef6d35, #ff9a6c);
}

.mock-chart span:nth-child(7) {
  height: 69%;
}

.mock-chart-labels {
  padding-top: 7px;
  display: flex;
  justify-content: space-around;
}

.mock-chart-labels i {
  width: 9px;
  height: 2px;
  border-radius: 2px;
  background: #dfe5ed;
}

.activity-item {
  margin-top: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.activity-item > b {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
}

.activity-item > b.orange {
  background: var(--orange-500);
}

.activity-item > b.blue {
  background: var(--blue-500);
}

.activity-item > b.green {
  background: var(--success);
}

.activity-item strong,
.activity-item small {
  overflow: hidden;
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.activity-item strong {
  color: #34465f;
  font-size: 0.51rem;
  line-height: 1.2;
}

.activity-item small {
  margin-top: 2px;
  color: #8a96a7;
  font-size: 0.43rem;
  line-height: 1.2;
}

.floating-chip {
  position: absolute;
  z-index: 4;
  padding: 11px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(211, 220, 232, 0.9);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 16px 34px rgba(18, 52, 91, 0.14);
  backdrop-filter: blur(12px);
}

.floating-chip > span {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  padding: 8px;
  display: grid;
  place-items: center;
  border-radius: 10px;
}

.floating-chip svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-chip small,
.floating-chip strong {
  display: block;
  line-height: 1.25;
  white-space: nowrap;
}

.floating-chip small {
  margin-bottom: 2px;
  color: #8290a4;
  font-size: 0.54rem;
}

.floating-chip strong {
  color: #31435d;
  font-size: 0.66rem;
}

.floating-chip-order {
  bottom: 21px;
  left: -27px;
}

.floating-chip-order > span {
  color: #df612e;
  background: #fff0e8;
}

.floating-chip-delivery {
  right: -17px;
  bottom: 70px;
}

.floating-chip-delivery > span {
  color: #178056;
  background: #e6f7f0;
}

.trust-strip {
  position: relative;
  z-index: 3;
  background: #fff;
}

.trust-inner {
  min-height: 126px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 58px;
}

.trust-inner > p {
  max-width: 205px;
  margin: 0;
  color: #7a8799;
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.45;
}

.client-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.client-list span {
  color: #40516a;
  font-size: clamp(0.85rem, 1.4vw, 1rem);
  font-weight: 850;
  letter-spacing: -0.02em;
  text-align: center;
}

.client-list i {
  width: 4px;
  height: 4px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #d3dbe7;
}

.section {
  padding-block: 112px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 56px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading h2,
.flow-copy h2,
.outcomes-copy h2,
.faq-intro h2,
.final-cta h2 {
  margin-bottom: 20px;
  font-size: clamp(2.15rem, 3.8vw, 3.55rem);
  line-height: 1.08;
}

.section-heading > p:last-child {
  max-width: 650px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.04rem;
}

.ecosystem {
  position: relative;
  overflow: hidden;
  background: var(--surface-soft);
}

.ecosystem::before {
  content: "";
  position: absolute;
  top: -250px;
  right: -250px;
  width: 600px;
  height: 600px;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(54, 120, 238, 0.09), transparent 69%);
}

.ecosystem-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.ecosystem-card {
  min-height: 285px;
  padding: 29px 26px;
  border: 1px solid #e1e7f0;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 25px rgba(26, 55, 92, 0.035);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.ecosystem-card:hover {
  border-color: #c6d4e8;
  box-shadow: 0 20px 45px rgba(26, 55, 92, 0.1);
  transform: translateY(-5px);
}

.featured-card {
  grid-row: span 2;
  min-height: 588px;
  color: #fff;
  border-color: transparent;
  background:
    radial-gradient(circle at 95% 0%, rgba(70, 128, 226, 0.42), transparent 35%),
    linear-gradient(145deg, var(--navy-900), #0b315f);
  box-shadow: 0 20px 45px rgba(7, 26, 54, 0.2);
}

.featured-card:hover {
  border-color: transparent;
  box-shadow: 0 25px 55px rgba(7, 26, 54, 0.27);
}

.featured-card .card-icon {
  color: #fff;
  background: linear-gradient(135deg, var(--orange-500), #ef5f29);
  box-shadow: 0 12px 24px rgba(240, 107, 50, 0.25);
}

.featured-card .card-kicker {
  color: #8eb5ed;
}

.featured-card h3 {
  margin-top: 27px;
  color: #fff;
  font-size: 2.1rem;
}

.featured-card p {
  color: #b9cce6;
  font-size: 1rem;
  line-height: 1.72;
}

.featured-card ul {
  margin: 35px 0 0;
  padding: 0;
  list-style: none;
}

.featured-card li {
  padding-block: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #e4eefc;
  font-size: 0.84rem;
  font-weight: 700;
}

.featured-card li::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--orange-500);
  box-shadow: 0 0 0 5px rgba(255, 122, 61, 0.11);
}

.card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 23px;
  padding: 13px;
  display: grid;
  place-items: center;
  color: #2a68cc;
  border-radius: 14px;
  background: #e8f0ff;
}

.card-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-icon.warm {
  color: #df602d;
  background: #fff0e8;
}

.card-icon.violet {
  color: #7355ce;
  background: #f0ebff;
}

.card-icon.cyan {
  color: #167d9b;
  background: #e5f6fa;
}

.card-icon.green {
  color: #23805e;
  background: #e5f6ef;
}

.card-icon.rose {
  color: #c24872;
  background: #fdebf1;
}

.card-icon.gold {
  color: #a36e12;
  background: #fff5d9;
}

.card-icon.blue {
  color: #2d65c2;
  background: #e7effd;
}

.card-kicker {
  display: block;
  color: #78879b;
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.ecosystem-card h3 {
  margin: 7px 0 12px;
  font-size: 1.3rem;
}

.ecosystem-card > p {
  margin-bottom: 0;
  color: #63718a;
  font-size: 0.88rem;
  line-height: 1.68;
}

.flow-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 7% 15%, rgba(54, 120, 238, 0.25), transparent 28%),
    radial-gradient(circle at 88% 88%, rgba(255, 122, 61, 0.13), transparent 28%),
    var(--navy-950);
}

.flow-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.15;
  background-image: radial-gradient(rgba(255, 255, 255, 0.34) 0.8px, transparent 0.8px);
  background-size: 24px 24px;
}

.flow-layout {
  position: relative;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 100px;
}

.flow-copy h2 {
  color: #fff;
}

.flow-copy > p:not(.eyebrow) {
  margin-bottom: 28px;
  color: #afc1da;
  font-size: 1.02rem;
  line-height: 1.78;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
}

.text-link:hover {
  color: #ff9a6b;
}

.flow-steps {
  position: relative;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  list-style: none;
}

.flow-steps::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 50%;
  left: 50%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.flow-steps li {
  min-height: 190px;
  padding: 27px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(10px);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.flow-steps li:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.075);
}

.flow-steps li > span {
  flex: 0 0 auto;
  color: var(--orange-500);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.flow-steps strong {
  display: block;
  color: #fff;
  font-size: 1.1rem;
}

.flow-steps p {
  margin: 9px 0 0;
  color: #9eb2ce;
  font-size: 0.82rem;
  line-height: 1.6;
}

.outcomes {
  overflow: hidden;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  align-items: center;
  gap: 96px;
}

.outcomes-visual {
  min-height: 560px;
  display: grid;
  place-items: center;
  border: 1px solid #e0e7f0;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at center, rgba(54, 120, 238, 0.1), transparent 46%),
    linear-gradient(145deg, #f7f9fd, #fff);
  box-shadow: inset 0 0 80px rgba(54, 120, 238, 0.035), var(--shadow-sm);
}

.connection-map {
  position: relative;
  width: 430px;
  height: 430px;
  display: grid;
  place-items: center;
}

.connection-map::before,
.connection-map::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(44, 100, 194, 0.13);
  border-radius: 50%;
}

.connection-map::before {
  inset: 39px;
}

.connection-map::after {
  inset: 95px;
  border-style: dashed;
}

.map-core {
  position: relative;
  z-index: 3;
  width: 144px;
  height: 144px;
  padding: 39px 20px;
  display: grid;
  place-items: center;
  border: 1px solid #d4dfed;
  border-radius: 34px;
  background: #fff;
  box-shadow: 0 24px 55px rgba(28, 67, 117, 0.16);
}

.map-core img {
  width: 105px;
  height: auto;
}

.map-node {
  position: absolute;
  z-index: 3;
  width: 75px;
  height: 75px;
  display: grid;
  place-items: center;
  border: 1px solid #d8e2ef;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 13px 30px rgba(29, 61, 102, 0.1);
}

.map-node span {
  color: #40536d;
  font-size: 0.69rem;
  font-weight: 850;
}

.node-one {
  top: 11px;
  left: 50%;
  transform: translateX(-50%);
}

.node-two {
  top: 117px;
  right: 10px;
}

.node-three {
  right: 63px;
  bottom: 24px;
}

.node-four {
  bottom: 24px;
  left: 63px;
}

.node-five {
  top: 117px;
  left: 10px;
}

.connector {
  position: absolute;
  z-index: 1;
  width: 105px;
  height: 1px;
  background: linear-gradient(to right, rgba(54, 120, 238, 0.1), rgba(54, 120, 238, 0.7));
  transform-origin: left center;
}

.connector::after {
  content: "";
  position: absolute;
  top: -3px;
  right: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange-500);
  box-shadow: 0 0 0 5px rgba(255, 122, 61, 0.11);
}

.connector-one {
  top: 213px;
  left: 213px;
  transform: rotate(-90deg);
}

.connector-two {
  top: 215px;
  left: 215px;
  transform: rotate(-24deg);
}

.connector-three {
  top: 217px;
  left: 215px;
  transform: rotate(51deg);
}

.connector-four {
  top: 217px;
  left: 215px;
  transform: rotate(129deg);
}

.connector-five {
  top: 215px;
  left: 215px;
  transform: rotate(204deg);
}

.outcomes-lead {
  margin-bottom: 33px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.outcome-list {
  display: grid;
  gap: 7px;
}

.outcome-list article {
  padding: 17px 0;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  border-bottom: 1px solid #e7ebf1;
}

.outcome-list article > span {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  padding: 7px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: var(--success);
}

.outcome-list svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.outcome-list h3 {
  margin: 0 0 5px;
  font-size: 1rem;
  letter-spacing: -0.015em;
}

.outcome-list p {
  margin: 0;
  color: #68778e;
  font-size: 0.84rem;
  line-height: 1.6;
}

.faq-section {
  background: var(--surface-soft);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: start;
  gap: 90px;
}

.faq-intro {
  position: sticky;
  top: 120px;
}

.faq-intro > p:not(.eyebrow) {
  margin-bottom: 28px;
  color: var(--muted);
}

.faq-list {
  border-top: 1px solid #dce3ed;
}

.faq-list details {
  border-bottom: 1px solid #dce3ed;
}

.faq-list summary {
  padding: 25px 2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: var(--navy-900);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.4;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  position: relative;
  width: 29px;
  height: 29px;
  flex: 0 0 auto;
  border: 1px solid #ccd7e5;
  border-radius: 50%;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.faq-list summary span::before,
.faq-list summary span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1.5px;
  border-radius: 2px;
  background: var(--navy-800);
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary span {
  border-color: var(--orange-500);
  background: var(--orange-500);
}

.faq-list details[open] summary span::before,
.faq-list details[open] summary span::after {
  background: #fff;
}

.faq-list details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-list details > p {
  max-width: 700px;
  margin: -5px 52px 25px 2px;
  color: #68778f;
  font-size: 0.91rem;
  line-height: 1.72;
}

.final-cta {
  padding: 28px 0 0;
  background: var(--surface-soft);
}

.final-cta-inner {
  position: relative;
  min-height: 350px;
  padding: 66px 72px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 60px;
  color: #fff;
  border-radius: 32px;
  background:
    radial-gradient(circle at 85% 15%, rgba(71, 138, 244, 0.45), transparent 32%),
    linear-gradient(135deg, var(--navy-900), #0d3567);
  box-shadow: 0 28px 65px rgba(7, 26, 54, 0.23);
}

.final-cta-inner::before {
  content: "";
  position: absolute;
  top: -110px;
  right: 260px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
}

.final-cta-inner::after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -190px;
  width: 420px;
  height: 420px;
  border: 1px dashed rgba(255, 255, 255, 0.11);
  border-radius: 50%;
}

.final-cta-inner > * {
  position: relative;
  z-index: 2;
}

.cta-glow {
  position: absolute;
  z-index: 0;
  top: -170px;
  right: -70px;
  width: 480px;
  height: 480px;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(87, 150, 255, 0.25), transparent 68%);
}

.final-cta h2 {
  max-width: 710px;
  color: #fff;
}

.final-cta p:not(.eyebrow) {
  max-width: 650px;
  margin: 0;
  color: #b8cbe5;
}

.final-cta-actions {
  display: grid;
  justify-items: center;
  gap: 18px;
}

.cta-login {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #d8e6f8;
  font-size: 0.82rem;
  font-weight: 750;
}

.cta-login:hover {
  color: #fff;
}

.site-footer {
  padding-top: 82px;
  color: #6b7a91;
  background: var(--surface-soft);
}

.footer-main {
  padding-bottom: 42px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
}

.footer-brand img {
  width: 130px;
}

.footer-main > p {
  margin: 0;
  font-size: 0.82rem;
}

.footer-main nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px 25px;
}

.footer-main nav a {
  color: #53647d;
  font-size: 0.8rem;
  font-weight: 700;
}

.footer-main nav a:hover {
  color: var(--orange-600);
}

.footer-bottom {
  padding-block: 22px 29px;
  border-top: 1px solid #dde4ed;
  font-size: 0.72rem;
}

@media (max-width: 1140px) {
  .site-nav {
    gap: 20px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(470px, 1.15fr);
    gap: 42px;
  }

  .hero-product {
    transform: scale(0.92);
    transform-origin: center right;
  }

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

  .featured-card {
    grid-row: span 2;
  }

  .flow-layout {
    gap: 62px;
  }

  .outcomes-grid {
    gap: 55px;
  }

  .outcomes-visual {
    min-height: 500px;
  }

  .connection-map {
    transform: scale(0.88);
  }
}

@media (max-width: 960px) {
  .header-inner {
    gap: 20px;
  }

  .site-nav {
    display: none;
  }

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

  .hero-grid {
    padding-top: 72px;
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-copy {
    max-width: 720px;
    text-align: center;
    margin-inline: auto;
  }

  .hero-copy .eyebrow,
  .hero-actions,
  .hero-assurances {
    justify-content: center;
  }

  .hero-lead {
    margin-inline: auto;
  }

  .hero-product {
    width: min(100%, 680px);
    margin-inline: auto;
    transform: none;
  }

  .trust-inner {
    padding-block: 28px;
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .trust-inner > p {
    max-width: none;
    text-align: center;
  }

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

  .featured-card {
    grid-row: auto;
    min-height: 365px;
  }

  .flow-layout,
  .outcomes-grid,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .flow-copy {
    max-width: 720px;
  }

  .outcomes-visual {
    min-height: 520px;
  }

  .outcomes-copy {
    max-width: 760px;
  }

  .faq-intro {
    position: static;
    max-width: 680px;
  }

  .final-cta-inner {
    padding: 56px 48px;
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .final-cta-actions {
    justify-items: start;
  }

  .footer-main {
    grid-template-columns: auto 1fr;
  }

  .footer-main nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

@media (max-width: 700px) {
  .site-container {
    width: min(calc(100% - 30px), var(--container));
  }

  .header-inner {
    min-height: 70px;
  }

  .brand img {
    width: 116px;
  }

  .header-login {
    display: none;
  }

  .button-small {
    min-height: 40px;
    padding-inline: 15px;
  }

  .hero {
    min-height: 0;
  }

  .hero-grid {
    min-height: 0;
    padding-block: 58px 68px;
    gap: 35px;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 12vw, 3.65rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-assurances {
    gap: 11px 15px;
  }

  .hero-product {
    min-height: 420px;
  }

  .product-window {
    border-radius: 17px;
    transform: none;
  }

  .window-topbar {
    min-height: 36px;
  }

  .window-body {
    min-height: 310px;
  }

  .mock-sidebar {
    width: 42px;
    gap: 14px;
  }

  .mock-content {
    padding: 15px;
  }

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

  .mock-stat-grid article:last-child {
    display: none;
  }

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

  .mock-activity-card {
    display: none;
  }

  .trial-card {
    top: -19px;
    right: 5px;
    width: 238px;
    padding: 11px 13px;
  }

  .trial-card-icon {
    width: 35px;
    height: 35px;
  }

  .trial-card span {
    font-size: 0.58rem;
  }

  .trial-card strong {
    font-size: 0.69rem;
  }

  .floating-chip-delivery {
    display: none;
  }

  .floating-chip-order {
    bottom: 0;
    left: 8px;
  }

  .product-orbit-one {
    width: 420px;
    height: 420px;
  }

  .product-orbit-two {
    display: none;
  }

  .client-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .client-list i {
    display: none;
  }

  .section {
    padding-block: 80px;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2,
  .flow-copy h2,
  .outcomes-copy h2,
  .faq-intro h2,
  .final-cta h2 {
    font-size: clamp(2rem, 9.5vw, 2.8rem);
  }

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

  .ecosystem-card,
  .featured-card {
    min-height: 0;
  }

  .featured-card {
    padding-bottom: 35px;
  }

  .flow-steps {
    grid-template-columns: 1fr;
  }

  .flow-steps li {
    min-height: 0;
  }

  .outcomes-visual {
    min-height: 420px;
  }

  .connection-map {
    transform: scale(0.74);
  }

  .faq-list summary {
    padding-block: 21px;
    font-size: 0.93rem;
  }

  .faq-list details > p {
    margin-right: 4px;
  }

  .final-cta {
    padding-top: 10px;
  }

  .final-cta-inner {
    min-height: 0;
    padding: 45px 28px;
    border-radius: 25px;
  }

  .final-cta-actions,
  .final-cta-actions .button {
    width: 100%;
  }

  .site-footer {
    padding-top: 62px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 17px;
  }

  .footer-main nav {
    grid-column: auto;
    margin-top: 15px;
  }
}

@media (max-width: 430px) {
  .header-actions .button {
    padding-inline: 12px;
    font-size: 0.79rem;
  }

  .brand img {
    width: 105px;
  }

  .eyebrow {
    font-size: 0.68rem;
  }

  .hero-assurances span {
    font-size: 0.72rem;
  }

  .hero-product {
    min-height: 390px;
  }

  .mock-content {
    padding: 12px 10px;
  }

  .mock-stat-grid article {
    padding: 9px;
  }

  .floating-chip-order {
    transform: scale(0.9);
    transform-origin: left bottom;
  }

  .outcomes-visual {
    min-height: 360px;
  }

  .connection-map {
    transform: scale(0.63);
  }

  .footer-main nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* ===== Apresentação: gestão inteligente ===== */
[data-scroll-section] {
  scroll-margin-top: 100px;
}

.site-header {
  transition: box-shadow 0.25s ease, background-color 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 32px rgba(7, 26, 54, 0.08);
}

.site-nav a.is-active {
  color: var(--navy-900);
}

.site-nav a.is-active::after {
  transform: scaleX(1);
}

.smart-hero {
  overflow: hidden;
}

.smart-hero .hero-lead {
  max-width: 690px;
}

.smart-signal-card {
  width: min(355px, calc(100% - 48px));
}

.smart-window {
  box-shadow: 0 36px 90px rgba(5, 18, 37, 0.21);
}

.smart-chip-margin span:first-child {
  color: #fff;
  background: linear-gradient(135deg, #ed6229, #ff925d);
}

.smart-chip-route span:first-child {
  color: #fff;
  background: linear-gradient(135deg, #148a59, #25bc7c);
}

.intelligence-band {
  position: relative;
  z-index: 2;
  padding: 24px 0 48px;
  background: #fff;
}

.intelligence-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid #dce5f1;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.intelligence-grid article {
  display: flex;
  gap: 16px;
  min-width: 0;
  padding: 26px;
}

.intelligence-grid article + article {
  border-left: 1px solid #e4eaf3;
}

.intelligence-grid article > span {
  flex: 0 0 auto;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--orange-600);
  background: var(--orange-100);
  border-radius: 12px;
  font-size: 0.73rem;
  font-weight: 800;
}

.intelligence-grid strong {
  display: block;
  color: var(--navy-950);
  font-size: 0.96rem;
  line-height: 1.35;
}

.intelligence-grid p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.81rem;
  line-height: 1.55;
}

.solution-section {
  position: relative;
  overflow: hidden;
  padding-block: 115px;
}

.solution-section:nth-of-type(even) {
  background: var(--surface-soft);
}

.solution-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(500px, 1.12fr);
  align-items: center;
  gap: clamp(58px, 8vw, 108px);
}

.solution-grid-reverse {
  grid-template-columns: minmax(500px, 1.12fr) minmax(0, 0.88fr);
}

.solution-copy h2 {
  max-width: 610px;
  margin-bottom: 22px;
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  line-height: 1.08;
}

.solution-lead {
  max-width: 610px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.76;
}

.solution-points {
  display: grid;
  gap: 17px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.solution-points li {
  display: grid;
  grid-template-columns: 37px 1fr;
  gap: 13px;
  align-items: start;
}

.solution-points li > span {
  display: grid;
  width: 37px;
  height: 37px;
  place-items: center;
  color: #fff;
  background: var(--navy-900);
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(7, 26, 54, 0.16);
}

.solution-points svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.solution-points strong {
  display: block;
  margin-bottom: 3px;
  color: var(--navy-950);
  font-size: 0.96rem;
}

.solution-points p {
  margin: 0;
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.56;
}

.feature-stage {
  position: relative;
  min-width: 0;
  min-height: 535px;
  display: grid;
  place-items: center;
  padding: 42px;
  border: 1px solid rgba(210, 222, 237, 0.92);
  border-radius: 36px;
  background:
    radial-gradient(circle at 15% 12%, rgba(54, 120, 238, 0.18), transparent 30%),
    radial-gradient(circle at 88% 88%, rgba(255, 122, 61, 0.18), transparent 28%),
    linear-gradient(145deg, #f4f8ff, #fff8f4);
  box-shadow: 0 28px 74px rgba(7, 26, 54, 0.12);
}

.feature-stage::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px dashed rgba(27, 69, 121, 0.13);
  border-radius: 26px;
  pointer-events: none;
}

.stage-note {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 212px;
  padding: 13px 16px;
  border: 1px solid rgba(209, 220, 234, 0.94);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 42px rgba(7, 26, 54, 0.14);
}

.stage-note > span {
  display: grid;
  width: 39px;
  height: 39px;
  flex: 0 0 auto;
  place-items: center;
  color: #fff;
  background: var(--orange-500);
  border-radius: 12px;
}

.stage-note svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stage-note small,
.stage-note strong {
  display: block;
}

.stage-note small {
  color: var(--muted);
  font-size: 0.68rem;
}

.stage-note strong {
  color: var(--navy-950);
  font-size: 0.76rem;
}

.customer-stage {
  min-height: 610px;
  background:
    radial-gradient(circle at 20% 20%, rgba(118, 87, 221, 0.22), transparent 34%),
    linear-gradient(145deg, #eef4ff, #fff7f2);
}

.customer-phone {
  position: relative;
  z-index: 2;
  width: min(322px, 83%);
  padding: 21px 18px 25px;
  border: 8px solid #071a36;
  border-radius: 42px;
  background: #fff;
  box-shadow: 0 30px 70px rgba(7, 26, 54, 0.24);
}

.phone-speaker {
  width: 72px;
  height: 6px;
  margin: -10px auto 17px;
  border-radius: 10px;
  background: #071a36;
}

.phone-appbar {
  display: flex;
  align-items: center;
  gap: 10px;
}

.phone-brand {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--navy-900), var(--blue-500));
  border-radius: 12px;
  font-size: 0.86rem;
  font-weight: 800;
}

.phone-appbar div {
  margin-right: auto;
}

.phone-appbar small,
.phone-appbar strong {
  display: block;
}

.phone-appbar small {
  color: var(--muted);
  font-size: 0.65rem;
}

.phone-appbar strong {
  color: var(--navy-950);
  font-size: 0.88rem;
}

.phone-live {
  padding: 5px 8px;
  color: #148a59;
  background: #e7f8f0;
  border-radius: 999px;
  font-size: 0.57rem;
  font-weight: 800;
  text-transform: uppercase;
}

.phone-order-card {
  margin: 20px 0 23px;
  padding: 17px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, #0a2851, #245fcb);
  box-shadow: 0 15px 30px rgba(36, 95, 203, 0.2);
}

.phone-order-card span,
.phone-order-card strong {
  display: block;
}

.phone-order-card span {
  margin-bottom: 4px;
  color: #bed1f7;
  font-size: 0.64rem;
}

.phone-order-card strong {
  font-size: 0.92rem;
}

.phone-order-card p {
  margin: 5px 0 0;
  color: #dfe9ff;
  font-size: 0.65rem;
}

.tracking-timeline {
  margin: 0;
  padding: 0;
  list-style: none;
}

.tracking-timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 11px;
  min-height: 61px;
}

.tracking-timeline li:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 24px;
  bottom: -2px;
  left: 13px;
  width: 2px;
  background: #e2e8f1;
}

.tracking-timeline li.is-done:not(:last-child)::before,
.tracking-timeline li.is-current:not(:last-child)::before {
  background: linear-gradient(#18a66a, #b7ead6);
}

.tracking-timeline i {
  position: relative;
  z-index: 1;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 2px solid #d5deea;
  border-radius: 50%;
  background: #fff;
}

.tracking-timeline i::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #b9c5d4;
}

.tracking-timeline .is-done i {
  color: #fff;
  border-color: #18a66a;
  background: #18a66a;
}

.tracking-timeline .is-done i::after {
  display: none;
}

.tracking-timeline .is-current i {
  border-color: #18a66a;
  box-shadow: 0 0 0 6px rgba(24, 166, 106, 0.1);
}

.tracking-timeline .is-current i::after {
  background: #18a66a;
}

.tracking-timeline svg {
  width: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
}

.tracking-timeline strong,
.tracking-timeline small {
  display: block;
}

.tracking-timeline strong {
  color: var(--navy-950);
  font-size: 0.79rem;
}

.tracking-timeline small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.63rem;
}

.stage-note-customer {
  right: 18px;
  bottom: 32px;
}

.route-stage {
  background:
    radial-gradient(circle at 80% 12%, rgba(24, 166, 106, 0.22), transparent 32%),
    linear-gradient(145deg, #eefaf5, #f4f7ff);
}

.route-dashboard,
.stock-dashboard,
.price-dashboard {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(198, 212, 229, 0.9);
  border-radius: 23px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(7, 26, 54, 0.18);
}

.feature-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  border-bottom: 1px solid #e6ebf2;
}

.feature-topbar small,
.feature-topbar strong {
  display: block;
}

.feature-topbar small {
  color: var(--muted);
  font-size: 0.66rem;
}

.feature-topbar strong {
  color: var(--navy-950);
  font-size: 0.93rem;
}

.feature-topbar > span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #148a59;
  font-size: 0.66rem;
  font-weight: 750;
}

.feature-topbar > span > i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #18a66a;
  box-shadow: 0 0 0 5px rgba(24, 166, 106, 0.1);
}

.route-map {
  position: relative;
  height: 330px;
  overflow: hidden;
  background-color: #edf2f4;
  background-image:
    linear-gradient(rgba(172, 187, 198, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(172, 187, 198, 0.13) 1px, transparent 1px);
  background-size: 38px 38px;
}

.route-map-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.route-map-lines path {
  fill: none;
  stroke-linecap: round;
}

.route-map-lines .road {
  stroke: #fff;
  stroke-width: 17;
  filter: drop-shadow(0 1px 1px rgba(76, 96, 110, 0.14));
}

.route-map-lines .active-route {
  stroke: #2f76dd;
  stroke-width: 5;
  stroke-dasharray: 10 8;
  filter: drop-shadow(0 5px 6px rgba(47, 118, 221, 0.3));
  animation: routeDash 7s linear infinite;
}

.route-pin {
  position: absolute;
  z-index: 2;
  display: grid;
  min-width: 29px;
  height: 29px;
  padding: 0 8px;
  place-items: center;
  color: #fff;
  background: var(--orange-500);
  border: 3px solid #fff;
  border-radius: 999px;
  box-shadow: 0 7px 15px rgba(7, 26, 54, 0.25);
  font-size: 0.65rem;
  font-weight: 800;
}

.pin-start {
  bottom: 42px;
  left: 13%;
  min-width: 47px;
  background: var(--navy-900);
}

.pin-one { top: 54%; left: 36%; }
.pin-two { top: 37%; left: 61%; }
.pin-three { top: 12%; right: 11%; }

.route-driver {
  position: absolute;
  z-index: 3;
  top: 43%;
  left: 48%;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: #fff;
  background: #18a66a;
  border: 4px solid #fff;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(7, 26, 54, 0.24);
  animation: routePulse 2.2s ease-in-out infinite;
}

.route-driver svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.route-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.route-summary article {
  padding: 14px 17px;
}

.route-summary article + article {
  border-left: 1px solid #e6ebf2;
}

.route-summary small,
.route-summary strong {
  display: block;
}

.route-summary small {
  color: var(--muted);
  font-size: 0.61rem;
}

.route-summary strong {
  color: var(--navy-950);
  font-size: 0.72rem;
}

.stage-note-route {
  right: 18px;
  bottom: 22px;
}

.stage-note-route > span,
.stage-note-stock > span {
  background: #18a66a;
}

.stock-stage {
  background:
    radial-gradient(circle at 13% 85%, rgba(24, 166, 106, 0.17), transparent 34%),
    linear-gradient(145deg, #f5f8ff, #f4fff9);
}

.health-pill,
.adjustment-filter {
  padding: 6px 10px;
  border-radius: 999px;
  background: #e7f8f0;
}

.stock-kpis {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
  padding: 16px 18px;
  background: #f6f8fc;
}

.stock-kpis article {
  padding: 16px;
  border: 1px solid #e2e8f1;
  border-radius: 15px;
  background: #fff;
}

.stock-kpis small,
.stock-kpis strong,
.stock-kpis span {
  display: block;
}

.stock-kpis small {
  color: var(--muted);
  font-size: 0.62rem;
}

.stock-kpis strong {
  margin: 4px 0;
  color: var(--navy-950);
  font-size: 0.84rem;
}

.stock-kpis span {
  color: #148a59;
  font-size: 0.61rem;
  font-weight: 700;
}

.stock-list,
.price-list {
  padding: 5px 18px 17px;
}

.stock-list-head,
.stock-row {
  display: grid;
  grid-template-columns: minmax(105px, 1fr) minmax(125px, 1.1fr) 72px;
  align-items: center;
  gap: 12px;
}

.stock-list-head {
  padding: 10px 0 8px;
  color: #8a97a9;
  font-size: 0.58rem;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.stock-row {
  min-height: 57px;
  border-top: 1px solid #edf0f5;
  font-size: 0.7rem;
}

.stock-row > span:first-child {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--navy-950);
}

.stock-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.stock-dot.danger { background: #e44758; }
.stock-dot.warning { background: #e79724; }
.stock-dot.success { background: #18a66a; }

.stock-row > span:nth-child(2) {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 7px;
}

.stock-bar {
  display: block;
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: #e8edf3;
}

.stock-bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ff7a3d, #ffb16f);
}

.stock-level-24 { width: 24%; }
.stock-level-48 { width: 48%; }
.stock-level-78 { width: 78%; background: linear-gradient(90deg, #18a66a, #55c996) !important; }

.stock-row small {
  color: var(--muted);
  font-size: 0.59rem;
}

.stock-row em {
  justify-self: end;
  padding: 5px 8px;
  color: #45566f;
  background: #f0f3f8;
  border-radius: 8px;
  font-size: 0.58rem;
  font-style: normal;
  font-weight: 750;
}

.stage-note-stock {
  right: 18px;
  bottom: 23px;
}

.margin-stage {
  min-height: 600px;
  background:
    radial-gradient(circle at 84% 12%, rgba(255, 122, 61, 0.22), transparent 31%),
    linear-gradient(145deg, #f7f9ff, #fff6f1);
}

.price-dashboard {
  transform: translateY(-5px);
}

.adjustment-filter {
  color: #a34d25 !important;
  background: #fff0e8;
}

.adjustment-filter i {
  background: #ff7a3d !important;
  box-shadow: 0 0 0 5px rgba(255, 122, 61, 0.1) !important;
}

.price-context {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 13px 18px;
  background: #f6f8fc;
}

.price-context span {
  padding: 7px 10px;
  color: var(--muted);
  border: 1px solid #e0e7f0;
  border-radius: 9px;
  background: #fff;
  font-size: 0.61rem;
}

.price-context strong {
  color: var(--navy-900);
}

.price-list-head,
.price-row {
  display: grid;
  grid-template-columns: minmax(128px, 1.3fr) 0.7fr 0.7fr minmax(88px, 0.9fr);
  align-items: center;
  gap: 10px;
}

.price-list-head {
  padding: 11px 0 8px;
  color: #8a97a9;
  font-size: 0.55rem;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.price-row {
  min-height: 66px;
  border-top: 1px solid #edf0f5;
}

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

.price-row > span:first-child strong {
  color: var(--navy-950);
  font-size: 0.7rem;
}

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

.price-row > span:not(:first-child) strong {
  color: #344762;
  font-size: 0.65rem;
}

.price-row em {
  justify-self: start;
  padding: 5px 7px;
  border-radius: 7px;
  font-size: 0.55rem;
  font-style: normal;
  font-weight: 750;
}

.price-row em.is-risk { color: #bf3141; background: #fff0f2; }
.price-row em.is-warning { color: #a96409; background: #fff8e8; }
.price-row em.is-safe { color: #148a59; background: #e7f8f0; }

.price-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 18px;
  border-top: 1px solid #e6ebf2;
  background: #fbfcfe;
}

.price-action span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 0.6rem;
}

.price-action svg {
  width: 17px;
  fill: none;
  stroke: var(--orange-500);
  stroke-width: 2;
}

.price-action button {
  flex: 0 0 auto;
  padding: 8px 11px;
  color: #fff;
  border: 0;
  border-radius: 9px;
  background: var(--orange-500);
  font-size: 0.61rem;
  font-weight: 800;
  pointer-events: none;
}

.stage-note-margin {
  right: 18px;
  bottom: 22px;
}

.projection-note {
  margin: 24px 0 0;
  padding: 13px 16px;
  color: #7a5728;
  border: 1px solid #f1d9b4;
  border-radius: 13px;
  background: #fff9ee;
  font-size: 0.77rem;
  line-height: 1.5;
}

.smart-ecosystem {
  background: #f6f8fc;
}

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

.compact-ecosystem .ecosystem-card {
  min-height: 295px;
}

.smart-flow {
  position: relative;
  overflow: hidden;
}

.smart-flow::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -100px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: rgba(54, 120, 238, 0.12);
  filter: blur(10px);
}

.site-js [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-js [data-reveal][data-reveal-delay="1"] {
  transition-delay: 0.1s;
}

.site-js [data-reveal][data-reveal-delay="2"] {
  transition-delay: 0.2s;
}

.site-js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes routeDash {
  to { stroke-dashoffset: -72; }
}

@keyframes routePulse {
  0%, 100% { transform: scale(1); box-shadow: 0 8px 20px rgba(7, 26, 54, 0.24), 0 0 0 0 rgba(24, 166, 106, 0.22); }
  50% { transform: scale(1.04); box-shadow: 0 8px 20px rgba(7, 26, 54, 0.24), 0 0 0 12px rgba(24, 166, 106, 0); }
}

@media (max-width: 1140px) {
  .header-inner {
    gap: 20px;
  }

  .site-nav {
    gap: 19px;
  }

  .solution-grid,
  .solution-grid-reverse {
    grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
    gap: 46px;
  }

  .feature-stage {
    padding-inline: 28px;
  }
}

@media (max-width: 960px) {
  html {
    scroll-padding-top: 132px;
  }

  [data-scroll-section] {
    scroll-margin-top: 132px;
  }

  .header-inner {
    min-height: 72px;
    flex-wrap: wrap;
    gap: 8px 18px;
    padding-top: 8px;
  }

  .site-nav {
    order: 3;
    display: flex;
    width: 100%;
    margin: 0;
    padding: 7px 0 10px;
    gap: 23px;
    overflow-x: auto;
    scrollbar-width: none;
    overscroll-behavior-inline: contain;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    flex: 0 0 auto;
    white-space: nowrap;
    font-size: 0.78rem;
  }

  .site-nav a::after {
    bottom: -5px;
  }

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

  .solution-section {
    padding-block: 88px;
  }

  .solution-grid,
  .solution-grid-reverse {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .solution-grid-reverse .feature-stage {
    order: 2;
  }

  .solution-grid-reverse .solution-copy {
    order: 1;
  }

  .solution-copy,
  .solution-copy h2,
  .solution-lead {
    max-width: 760px;
  }

  .feature-stage {
    width: min(100%, 680px);
    margin-inline: auto;
  }

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

@media (max-width: 700px) {
  html {
    scroll-padding-top: 122px;
  }

  [data-scroll-section] {
    scroll-margin-top: 122px;
  }

  .header-login {
    display: none;
  }

  .smart-hero {
    padding-top: 54px;
  }

  .smart-signal-card {
    left: 3%;
  }

  .intelligence-band {
    padding-bottom: 26px;
  }

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

  .intelligence-grid article {
    padding: 20px;
  }

  .intelligence-grid article + article {
    border-top: 1px solid #e4eaf3;
    border-left: 0;
  }

  .solution-section {
    padding-block: 72px;
  }

  .solution-grid,
  .solution-grid-reverse {
    gap: 42px;
  }

  .solution-copy h2 {
    font-size: clamp(1.95rem, 10vw, 2.7rem);
  }

  .solution-lead {
    font-size: 0.95rem;
  }

  .feature-stage {
    min-height: 470px;
    padding: 28px 16px;
    border-radius: 26px;
  }

  .feature-stage::before {
    inset: 12px;
    border-radius: 19px;
  }

  .customer-stage {
    min-height: 560px;
  }

  .customer-phone {
    width: min(310px, 88%);
  }

  .stage-note {
    right: 7px;
    bottom: 12px;
    min-width: 190px;
    padding: 10px 12px;
  }

  .route-map {
    height: 270px;
  }

  .route-summary article {
    padding: 11px 8px;
  }

  .stock-list,
  .price-list {
    padding-inline: 11px;
  }

  .stock-list-head,
  .stock-row {
    grid-template-columns: minmax(90px, 1fr) minmax(100px, 1fr);
  }

  .stock-list-head span:last-child,
  .stock-row > em {
    display: none;
  }

  .margin-stage {
    min-height: 545px;
  }

  .price-list-head,
  .price-row {
    grid-template-columns: minmax(115px, 1.2fr) 0.7fr minmax(78px, 0.8fr);
  }

  .price-list-head span:nth-child(2),
  .price-row > span:nth-child(2) {
    display: none;
  }

  .price-action {
    align-items: flex-start;
    flex-direction: column;
  }

  .compact-ecosystem {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  .header-inner {
    column-gap: 8px;
  }

  .site-nav {
    gap: 19px;
  }

  .feature-topbar {
    padding: 14px;
  }

  .feature-topbar > span {
    font-size: 0.57rem;
  }

  .route-dashboard,
  .stock-dashboard,
  .price-dashboard {
    border-radius: 18px;
  }

  .route-map {
    height: 245px;
  }

  .stock-kpis {
    gap: 8px;
    padding: 11px;
  }

  .stock-kpis article {
    padding: 12px 10px;
  }

  .price-context {
    padding-inline: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-js [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .route-map-lines .active-route,
  .route-driver {
    animation: none;
  }
}
