:root {
  --bg: #07111f;
  --bg-2: #0b1729;
  --surface: #0f2036;
  --surface-2: #132843;
  --soft: #f3f7fb;
  --white: #ffffff;
  --text: #101a2b;
  --text-soft: #5b6879;
  --text-on-dark: #eaf2ff;
  --muted-on-dark: #9db0c7;
  --primary: #1fe2a1;
  --primary-2: #19c78f;
  --cyan: #24b6ff;
  --line: rgba(16, 26, 43, .10);
  --line-dark: rgba(255,255,255,.09);
  --shadow: 0 24px 80px rgba(6, 16, 30, .16);
  --radius: 22px;
  --radius-sm: 14px;
  --container: 1180px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

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

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

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

button { cursor: pointer; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 999;
  background: var(--primary);
  color: #03160f;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 800;
  transition: top .2s ease;
}

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

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

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(7, 17, 31, .76);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: background .25s ease, box-shadow .25s ease;
}

.header.scrolled {
  background: rgba(7, 17, 31, .95);
  box-shadow: 0 10px 40px rgba(0,0,0,.16);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 700;
  letter-spacing: -.02em;
}

.brand-mark {
  width: 37px;
  height: 37px;
  border-radius: 11px;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  color: #04111b;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 8px 24px rgba(31, 226, 161, .22);
}

.brand-text { font-size: 20px; }
.brand-text strong { color: var(--primary); }

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #d2deec;
  font-size: 14px;
  font-weight: 650;
}

.nav > a:not(.btn):hover { color: var(--primary); }
.nav-login { padding-left: 10px; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 9px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: white;
  margin: 6px 0;
  border-radius: 99px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #56edbd);
  color: #041710;
  box-shadow: 0 14px 34px rgba(31, 226, 161, .22);
}

.btn-primary:hover {
  box-shadow: 0 18px 42px rgba(31, 226, 161, .32);
}

.btn-ghost {
  color: var(--white);
  border-color: rgba(255,255,255,.16);
  background: rgba(255,255,255,.04);
}

.btn-ghost:hover { background: rgba(255,255,255,.08); }
.btn-sm { min-height: 40px; padding-inline: 16px; border-radius: 10px; }
.btn-lg { min-height: 54px; padding-inline: 24px; border-radius: 14px; }
.btn-full { width: 100%; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 30%, rgba(36,182,255,.17), transparent 28%),
    radial-gradient(circle at 22% 48%, rgba(31,226,161,.10), transparent 28%),
    linear-gradient(180deg, #07111f, #081625);
  color: var(--white);
  padding: 150px 0 92px;
}

.hero::after {
  content: "";
  position: absolute;
  right: -180px;
  top: 80px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(31,226,161,.11);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(31,226,161,.02), 0 0 0 180px rgba(31,226,161,.015);
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  opacity: .14;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent 86%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 54px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: currentColor;
  border-radius: 99px;
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(44px, 5.3vw, 72px);
  line-height: 1.02;
  letter-spacing: -.052em;
}

.hero h1 span {
  background: linear-gradient(90deg, var(--primary), #83d9ff);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-lead {
  max-width: 690px;
  margin: 24px 0 0;
  color: #b7c8da;
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.hero-trust div {
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.11);
}

.hero-trust strong,
.hero-trust span { display: block; }

.hero-trust strong { font-size: 13px; color: #eef7ff; }
.hero-trust span { margin-top: 6px; color: #8fa4ba; font-size: 12px; line-height: 1.5; }

.hero-visual {
  position: relative;
  min-width: 0;
}

.dashboard-shell {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  box-shadow: 0 36px 110px rgba(0,0,0,.42);
  transform: perspective(1400px) rotateY(-5deg) rotateX(2deg);
}

.dashboard-topbar {
  min-height: 46px;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  background: #0d1a2b;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: #90a3b9;
  font-size: 10px;
}

.window-dots { display: flex; gap: 5px; }
.window-dots i { width: 7px; height: 7px; border-radius: 50%; background: #33465c; }
.status-pill { justify-self: end; display: inline-flex; align-items: center; gap: 6px; color: #c5d6e7; }
.status-pill i { width: 6px; height: 6px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 0 4px rgba(31,226,161,.10); }

.dashboard-body {
  min-height: 440px;
  display: grid;
  grid-template-columns: 56px 1fr;
  background: #f3f7fb;
}

.dash-sidebar {
  padding: 18px 0;
  background: #0c1929;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.dash-logo {
  width: 27px; height: 27px; border-radius: 8px; display: grid; place-items: center;
  background: var(--primary); color: #062016; font-size: 9px; font-weight: 900; margin-bottom: 12px;
}

.dash-sidebar > span {
  width: 20px; height: 20px; border-radius: 6px; border: 1px solid #29405a;
}
.dash-sidebar > span.active { background: #173552; border-color: #2a5277; }

.dash-content {
  padding: 28px 22px 22px;
  color: #142338;
  min-width: 0;
}

.dash-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dash-title small, .dash-title strong { display: block; }
.dash-title small { color: #8592a3; font-size: 9px; }
.dash-title strong { margin-top: 3px; font-size: 15px; }
.dash-title button { border: 0; background: transparent; color: #b3bfcc; }

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 20px;
}

.metric-card {
  background: white;
  border: 1px solid #e8eef4;
  border-radius: 11px;
  padding: 14px;
  box-shadow: 0 10px 28px rgba(36, 51, 76, .05);
}

.metric-card span, .metric-card strong, .metric-card small { display: block; }
.metric-card span { color: #8b98a7; font-size: 8px; }
.metric-card strong { margin: 6px 0 3px; font-size: 15px; }
.metric-card small { color: #9ca8b4; font-size: 7px; }
.metric-card .positive { color: #16a270; }

.dash-bottom {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 10px;
  margin-top: 10px;
}

.chart-card, .orders-card {
  min-height: 220px;
  padding: 14px;
  background: white;
  border: 1px solid #e8eef4;
  border-radius: 11px;
}

.card-head {
  display: flex;
  justify-content: space-between;
  color: #394a5f;
  font-size: 9px;
}
.card-head small { color: #95a1af; }

.bars {
  height: 150px;
  margin-top: 18px;
  display: flex;
  align-items: end;
  gap: 6px;
  padding: 0 4px 5px;
  border-bottom: 1px solid #edf1f5;
}

.bars i {
  flex: 1;
  min-width: 3px;
  border-radius: 5px 5px 2px 2px;
  background: linear-gradient(180deg, #1fe2a1, #7af0cb);
}

.order-row {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eef2f5;
  font-size: 8px;
}

.order-row strong { grid-column: 2; color: #8492a1; font-size: 7px; font-weight: 600; margin-top: -8px; }
.order-row i { grid-row: 1 / 3; width: 7px; height: 7px; border-radius: 50%; }
.dot-green { background: #1fc690; }
.dot-blue { background: #32a9ff; }
.dot-orange { background: #ffac4b; }

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 195px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 14px;
  background: rgba(11, 27, 44, .88);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 55px rgba(0,0,0,.28);
}

.floating-kds { left: -34px; bottom: 38px; }
.floating-ai { right: -22px; top: 62px; }

.floating-card strong, .floating-card small { display: block; }
.floating-card strong { font-size: 11px; }
.floating-card small { color: #8fa4b9; margin-top: 2px; font-size: 9px; }

.floating-icon {
  width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center;
  background: rgba(36,182,255,.12); color: #5bc6ff; border: 1px solid rgba(36,182,255,.22);
  font-size: 10px; font-weight: 900;
}

.ai-icon { background: rgba(31,226,161,.12); color: var(--primary); border-color: rgba(31,226,161,.22); font-size: 18px; }

.logos-strip {
  border-bottom: 1px solid #e9eef4;
  background: white;
}

.logos-strip .container {
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.logos-strip span { color: #91a0af; font-size: 12px; white-space: nowrap; }

.segments {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  overflow: hidden;
}

.segments strong { color: #667587; font-size: 13px; white-space: nowrap; }

.section { padding: 110px 0; }
.section-dark { background: var(--bg); color: var(--text-on-dark); }
.section-soft { background: var(--soft); }

.split-section {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 88px;
  align-items: start;
}

.section-heading { max-width: 680px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }

.section-heading h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -.04em;
}

.section-heading p {
  margin: 20px 0 0;
  color: var(--text-soft);
  font-size: 17px;
}

.section-dark .section-heading p { color: var(--muted-on-dark); }

.pain-list { display: grid; gap: 8px; }

.pain-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.pain-list article:first-child { padding-top: 0; }
.pain-icon {
  width: 44px; height: 44px; display: grid; place-items: center; border-radius: 12px;
  background: #e9fff6; color: #12936a; font-size: 11px; font-weight: 900;
}

.pain-list strong { font-size: 18px; }
.pain-list p { margin: 6px 0 0; color: var(--text-soft); }

.features-grid {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-card {
  min-height: 270px;
  padding: 28px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(31,226,161,.30);
  background: linear-gradient(180deg, rgba(31,226,161,.07), rgba(255,255,255,.025));
}

.feature-card.featured {
  grid-row: span 2;
  min-height: 556px;
  background:
    radial-gradient(circle at 90% 10%, rgba(31,226,161,.12), transparent 35%),
    linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
}

.feature-icon {
  min-width: 48px;
  width: fit-content;
  height: 42px;
  padding: 0 10px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(31,226,161,.10);
  border: 1px solid rgba(31,226,161,.18);
  color: var(--primary);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .05em;
}

.feature-tag {
  display: inline-block;
  margin-top: 52px;
  color: #7f95ab;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
}

.feature-card h3 {
  margin: 20px 0 10px;
  font-size: 22px;
  letter-spacing: -.025em;
}

.feature-card p {
  margin: 0;
  color: #93a7bc;
  font-size: 14px;
}

.feature-card a {
  display: inline-flex;
  gap: 8px;
  margin-top: 24px;
  color: #dceaff;
  font-size: 13px;
  font-weight: 800;
}

.feature-card a span { color: var(--primary); }

.feature-card ul {
  margin: 30px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line-dark);
  list-style: none;
  display: grid;
  gap: 12px;
}

.feature-card li {
  position: relative;
  padding-left: 22px;
  color: #bdcde0;
  font-size: 13px;
}

.feature-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 900;
}

.benefits-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.benefit {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.benefit > span {
  width: 46px; height: 46px; display: grid; place-items: center;
  border-radius: 13px; background: #eafff7; color: #16956d; font-size: 20px; font-weight: 900;
}

.benefit h3 { margin: 42px 0 8px; font-size: 20px; }
.benefit p { margin: 0; color: var(--text-soft); font-size: 14px; }

.integration-section {
  position: relative;
  overflow: hidden;
  background: #0a1422;
  color: var(--text-on-dark);
}

.integration-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 45%, rgba(36,182,255,.10), transparent 30%);
}

.integration-grid {
  position: relative;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 70px;
  align-items: center;
}

.integration-copy p { color: var(--muted-on-dark); }

.integration-points {
  margin-top: 32px;
  display: grid;
  gap: 16px;
}

.integration-points > div {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  align-items: start;
}

.integration-points > div > span {
  width: 38px; height: 38px; display: grid; place-items: center;
  border-radius: 10px; background: rgba(31,226,161,.08); color: var(--primary);
  border: 1px solid rgba(31,226,161,.15); font-size: 10px; font-weight: 900;
}

.integration-points p { margin: 0; font-size: 14px; }
.integration-points strong { display: block; margin-bottom: 2px; color: #e7f2ff; font-size: 14px; }
.integration-points code { color: var(--primary); }

.code-window {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 18px;
  background: #06101c;
  box-shadow: 0 28px 90px rgba(0,0,0,.30);
}

.code-head {
  min-height: 46px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #0d1a29;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.code-head > span { display: flex; gap: 6px; }
.code-head i { width: 8px; height: 8px; border-radius: 50%; background: #304155; }
.code-head small { color: #8498ad; }

.code-window pre {
  margin: 0;
  padding: 36px;
  overflow: auto;
  color: #d7e5f4;
  font-size: 13px;
  line-height: 2;
  tab-size: 2;
}

.c-green { color: #66edbd; }
.c-purple { color: #a99cff; }

.api-chip {
  margin: 0 22px 22px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 9px;
  background: #0e2130;
  border: 1px solid #18354a;
  border-radius: 10px;
  color: #9bb0c4;
  font-size: 11px;
}

.api-chip span {
  width: 7px; height: 7px; border-radius: 50%; background: var(--primary);
  box-shadow: 0 0 0 4px rgba(31,226,161,.08);
}

.steps {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.step {
  position: relative;
  min-height: 250px;
  padding: 30px;
  background: white;
  border: 1px solid #e3eaf1;
  border-radius: var(--radius);
}

.step > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg);
  color: var(--primary);
  font-weight: 900;
}

.step h3 { margin: 52px 0 8px; font-size: 20px; }
.step p { margin: 0; color: var(--text-soft); font-size: 14px; }

.faq-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 90px;
  align-items: start;
}

.accordion details {
  border-bottom: 1px solid var(--line);
}

.accordion summary {
  position: relative;
  padding: 24px 46px 24px 0;
  list-style: none;
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
}

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

.accordion summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 21px;
  width: 28px; height: 28px;
  display: grid; place-items: center;
  border-radius: 8px;
  background: #f0f5f8;
  color: #526173;
}

.accordion details[open] summary::after { content: "−"; }
.accordion details p {
  margin: -6px 46px 24px 0;
  color: var(--text-soft);
  font-size: 14px;
}

.cta-section {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background: linear-gradient(135deg, #07111f, #0a1d2f);
  color: var(--text-on-dark);
}

.cta-glow {
  position: absolute;
  width: 560px; height: 560px; border-radius: 50%;
  left: -180px; top: -160px;
  background: rgba(31,226,161,.07);
  filter: blur(10px);
}

.contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px;
  align-items: start;
}

.contact-copy h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.08;
  letter-spacing: -.04em;
}

.contact-copy > p { color: #9db0c6; font-size: 16px; }

.contact-bullets {
  margin-top: 28px;
  display: grid;
  gap: 12px;
  color: #bfd0e2;
  font-size: 14px;
}

.contact-bullets span::first-letter { color: var(--primary); }

.lead-form {
  padding: 30px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: var(--radius);
  background: rgba(255,255,255,.055);
  box-shadow: 0 30px 90px rgba(0,0,0,.18);
}

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

.lead-form label {
  display: block;
  margin-bottom: 14px;
  color: #d8e4f1;
  font-size: 12px;
  font-weight: 700;
}

.lead-form input,
.lead-form textarea,
.lead-form select {
  width: 100%;
  margin-top: 7px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 11px;
  outline: none;
  background: rgba(3,10,18,.36);
  color: white;
  transition: border .2s ease, box-shadow .2s ease;
}

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

.lead-form textarea { padding: 13px; resize: vertical; }

.lead-form input::placeholder,
.lead-form textarea::placeholder { color: #687f97; }

.lead-form select { color-scheme: dark; }

.lead-form input:focus,
.lead-form textarea:focus,
.lead-form select:focus {
  border-color: rgba(31,226,161,.6);
  box-shadow: 0 0 0 4px rgba(31,226,161,.07);
}

.checkbox {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  color: #90a5bb !important;
  font-weight: 500 !important;
  line-height: 1.5;
}

.checkbox input {
  width: 17px;
  height: 17px;
  min-height: 0;
  margin: 2px 0 0;
  accent-color: var(--primary);
}

.form-status {
  min-height: 20px;
  margin: 14px 0 0;
  text-align: center;
  color: #a9bed2;
  font-size: 12px;
}

.form-status.success { color: #7df0c7; }
.form-status.error { color: #ff9b9b; }

.footer {
  padding: 62px 0 24px;
  background: #050c15;
  color: #c3d0de;
  border-top: 1px solid rgba(255,255,255,.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .65fr .65fr 1fr;
  gap: 46px;
}

.footer-brand { margin-bottom: 16px; }
.footer-grid > div > p { max-width: 320px; color: #70869c; font-size: 13px; }

.footer-links { display: grid; align-content: start; gap: 10px; }
.footer-links strong { color: #eff6ff; margin-bottom: 4px; font-size: 13px; }
.footer-links a { color: #71869b; font-size: 13px; }
.footer-links a:hover { color: var(--primary); }

.footer-cta strong { display: block; margin-bottom: 16px; color: white; }

.footer-bottom {
  margin-top: 50px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,.07);
  color: #607589;
  font-size: 11px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1020px) {
  .nav { gap: 16px; }
  .nav > a:not(.btn):not(.nav-login) { display: none; }

  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 800px; }
  .hero-visual { max-width: 760px; margin-inline: auto; }
  .hero-trust { max-width: 720px; }

  .split-section,
  .integration-grid,
  .faq-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }

  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card.featured { grid-row: auto; min-height: 380px; }

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

  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-cta { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
  .footer-cta strong { margin: 0; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 28px, var(--container)); }
  .header { background: rgba(7,17,31,.94); }
  .nav-wrap { min-height: 68px; }

  .menu-toggle { display: block; }

  .nav {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 78px;
    padding: 18px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 16px;
    background: #0b1828;
    box-shadow: 0 24px 80px rgba(0,0,0,.35);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav.open { display: flex; }
  .nav > a:not(.btn):not(.nav-login) { display: block; }
  .nav > a { padding: 12px 8px; }
  .nav .btn { margin-top: 8px; }
  .nav-login { padding-left: 8px; }

  .hero { padding: 118px 0 72px; }
  .hero h1 { font-size: clamp(40px, 12vw, 58px); }
  .hero-lead { font-size: 16px; }
  .hero-actions { display: grid; }
  .hero-trust { grid-template-columns: 1fr; gap: 10px; }
  .hero-trust div { padding-top: 12px; }

  .dashboard-shell { transform: none; }
  .floating-card { display: none; }
  .dashboard-body { grid-template-columns: 42px 1fr; min-height: 360px; }
  .dash-content { padding: 18px 12px; }
  .metric-grid { grid-template-columns: 1fr 1fr; }
  .metric-card:last-child { grid-column: 1 / -1; }
  .dash-bottom { grid-template-columns: 1fr; }
  .orders-card { display: none; }

  .logos-strip .container { align-items: flex-start; flex-direction: column; gap: 14px; padding: 20px 0; }
  .segments { justify-content: flex-start; flex-wrap: wrap; gap: 8px 18px; }

  .section { padding: 78px 0; }
  .section-heading h2, .contact-copy h2 { font-size: 34px; }

  .features-grid,
  .benefits-grid,
  .steps,
  .footer-grid { grid-template-columns: 1fr; }

  .feature-card.featured { min-height: auto; }
  .feature-tag { margin-top: 32px; }

  .form-row { grid-template-columns: 1fr; gap: 0; }
  .lead-form { padding: 22px 18px; }

  .code-window pre { padding: 24px 18px; font-size: 11px; }

  .footer-cta {
    grid-column: auto;
    display: block;
  }
  .footer-cta strong { margin-bottom: 14px; }

  .footer-bottom { flex-direction: column; }
}
