:root {
  color-scheme: light;
  --bg: #f5f8fc;
  --bg-soft: #eef4fb;
  --surface: #ffffff;
  --surface-2: #f9fbff;
  --ink: #07152f;
  --text: #172846;
  --muted: #65748d;
  --line: #dbe5f2;
  --line-strong: #c7d5e8;
  --blue: #1159e6;
  --blue-2: #4938e9;
  --teal: #07a68e;
  --green: #0f9f68;
  --orange: #f97316;
  --red: #ef4444;
  --shadow-sm: 0 10px 28px rgba(10, 31, 68, 0.08);
  --shadow-md: 0 22px 70px rgba(10, 31, 68, 0.14);
  --shadow-lg: 0 34px 100px rgba(7, 21, 47, 0.18);
  --radius: 8px;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 0%, rgba(17, 89, 230, 0.1), transparent 28%),
    linear-gradient(180deg, #ffffff 0, #f7faff 720px, #ffffff 100%);
  font-family: Inter, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.has-lightbox {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

p {
  line-height: 1.65;
}

.section-pad {
  padding: clamp(64px, 8vw, 112px) clamp(18px, 5vw, 76px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 74px;
  padding: 14px clamp(18px, 5vw, 76px);
  border-bottom: 1px solid rgba(219, 229, 242, 0.88);
  background: rgba(255, 255, 255, 0.91);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 850;
}

.brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.site-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 25px;
  color: #263a5d;
  font-size: 14px;
  font-weight: 760;
}

.site-nav a {
  transition: color 160ms ease;
}

.site-nav a:hover {
  color: var(--blue);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 850;
  text-align: center;
  white-space: nowrap;
  transition: transform 170ms ease, border-color 170ms ease, box-shadow 170ms ease, background 170ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #fff;
  border-color: #0c54dc;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: 0 14px 32px rgba(17, 89, 230, 0.24);
}

.button-outline {
  color: var(--ink);
  background: #fff;
  border-color: #b9c8df;
}

.button-large {
  min-height: 52px;
  padding-inline: 24px;
  font-size: 15px;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: none;
  margin: 0;
  min-height: clamp(620px, 72vh, 760px);
  padding-inline: clamp(28px, 6vw, 132px);
  padding-top: clamp(42px, 5.6vw, 76px);
  padding-bottom: clamp(96px, 9vw, 132px);
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid rgba(199, 213, 232, 0.8);
  background:
    radial-gradient(circle at 78% 16%, rgba(17, 89, 230, 0.11), transparent 32%),
    radial-gradient(circle at 18% 18%, rgba(7, 166, 142, 0.08), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f5f8ff 48%, #eef5ff 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero::before {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.64) 0%, rgba(255, 255, 255, 0.22) 52%, transparent 100%);
}

.hero::after {
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 72%, rgba(219, 231, 248, 0.72) 100%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  width: min(100%, 900px);
  text-align: center;
}

.hero-side-gallery {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  width: clamp(560px, 34vw, 720px);
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #eef4fb;
  box-shadow: none;
}

.hero-side-gallery::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-side-gallery-left {
  left: 0;
}

.hero-side-gallery-left::after {
  background:
    linear-gradient(90deg, transparent 0%, transparent 54%, rgba(247, 250, 255, 0.58) 82%, rgba(247, 250, 255, 0.92) 100%),
    linear-gradient(180deg, rgba(247, 250, 255, 0.16), transparent 22%, transparent 72%, rgba(219, 231, 248, 0.22));
}

.hero-side-gallery-right {
  right: 0;
}

.hero-side-gallery-right::after {
  background:
    linear-gradient(90deg, rgba(247, 250, 255, 0.92) 0%, rgba(247, 250, 255, 0.58) 18%, transparent 46%, transparent 100%),
    linear-gradient(180deg, rgba(247, 250, 255, 0.16), transparent 22%, transparent 72%, rgba(219, 231, 248, 0.22));
}

.hero-side-gallery img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.035);
  filter: saturate(1.08) contrast(1.04);
  animation: heroSideFade 18s infinite ease-in-out;
  will-change: opacity, transform;
}

.hero-side-gallery img:nth-child(2) {
  animation-delay: 6s;
}

.hero-side-gallery img:nth-child(3) {
  animation-delay: 12s;
}

.hero-side-gallery-right img {
  animation-delay: 0s;
}

.hero-side-gallery-right img:nth-child(2) {
  animation-delay: 6s;
}

.hero-side-gallery-right img:nth-child(3) {
  animation-delay: 12s;
}

@keyframes heroSideFade {
  0%,
  29% {
    opacity: 1;
    transform: scale(1.035);
  }

  35%,
  94% {
    opacity: 0;
    transform: scale(1);
  }

  100% {
    opacity: 1;
    transform: scale(1.035);
  }
}

h1 {
  max-width: 900px;
  margin-inline: auto;
  margin-bottom: 24px;
  color: var(--ink);
  font-size: clamp(50px, 5vw, 80px);
  line-height: 0.98;
  letter-spacing: 0;
  text-shadow: 0 2px 12px rgba(255, 255, 255, 0.36);
}

.module-hero {
  background:
    radial-gradient(circle at 80% 0%, rgba(7, 166, 142, 0.12), transparent 28%),
    linear-gradient(180deg, #f7faff, #ffffff);
}

.module-hero h1 {
  margin-inline: auto;
}

.hero-copy > p {
  max-width: 690px;
  margin-inline: auto;
  margin-bottom: 32px;
  color: #243752;
  font-size: clamp(18px, 2vw, 22px);
  text-shadow: 0 1px 10px rgba(255, 255, 255, 0.32);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 32px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.trust-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: #304362;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 8px 22px rgba(8, 22, 61, 0.08);
  font-size: 13px;
  font-weight: 800;
}

.hero-stage {
  position: relative;
  min-height: 560px;
  justify-self: stretch;
}

.dashboard-shell {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-left: auto;
  overflow: hidden;
  border: 1px solid #cbd9ed;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 40px 125px rgba(7, 21, 47, 0.26);
}

.dashboard-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 44px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  background: #f8fbff;
}

.window-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #a5b4c9;
}

.window-dot:first-child {
  background: #ef4444;
}

.window-dot:nth-child(2) {
  background: #f59e0b;
}

.window-dot:nth-child(3) {
  background: #10b981;
}

.dashboard-topbar strong {
  margin-left: 8px;
  color: var(--ink);
  font-size: 13px;
}

.dashboard-body {
  display: grid;
  grid-template-columns: 160px 1fr;
  min-height: 400px;
}

.mock-sidebar {
  padding: 18px;
  color: #dbeafe;
  background: linear-gradient(180deg, #082f8f, #071a4a);
}

.mock-sidebar b,
.mock-sidebar span {
  display: block;
}

.mock-sidebar b {
  margin-bottom: 18px;
  color: #fff;
}

.mock-sidebar span {
  padding: 10px 8px;
  margin-bottom: 4px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 760;
}

.mock-sidebar .active {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
}

.mock-main {
  min-width: 0;
  padding: 18px;
  background: #f6f9fe;
}

.kpi-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
  min-width: 0;
}

.kpi-row div,
.dispatch-board,
.mini-map {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.kpi-row div {
  padding: 16px;
}

.kpi-row small,
.kpi-row em,
.board-title span,
.job-line span,
.mini-map span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 750;
}

.kpi-row strong {
  display: block;
  margin: 6px 0 2px;
  color: var(--ink);
  font-size: 26px;
}

.ops-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 170px;
  gap: 14px;
  min-width: 0;
}

.dispatch-board {
  padding: 16px;
}

.board-title {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.board-title strong {
  color: var(--ink);
}

.job-line {
  padding: 13px 12px;
  border-left: 4px solid var(--blue);
  border-radius: 7px;
  background: #f8fbff;
}

.job-line + .job-line {
  margin-top: 10px;
}

.job-line b {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}

.job-line.green {
  border-color: var(--green);
}

.job-line.orange {
  border-color: var(--orange);
}

.mini-map {
  position: relative;
  overflow: hidden;
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(17, 89, 230, 0.08), rgba(7, 166, 142, 0.08)),
    #fff;
}

.mini-map strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 25px;
}

.route-line {
  position: absolute;
  right: -34px;
  bottom: 14px;
  width: 160px;
  height: 96px;
  border: 2px dashed rgba(17, 89, 230, 0.34);
  border-radius: 50%;
}

.field-visual {
  position: absolute;
  right: -4px;
  bottom: -18px;
  z-index: 3;
  width: min(43%, 380px);
  border-radius: var(--radius);
  box-shadow: 0 22px 70px rgba(7, 21, 47, 0.22);
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: min(1120px, calc(100% - 56px));
  margin: -96px auto 0;
  position: relative;
  z-index: 5;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: 0 18px 54px rgba(8, 22, 61, 0.14);
}

.proof-band div {
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.94);
}

.proof-band strong {
  display: block;
  color: var(--ink);
  font-size: 24px;
}

.proof-band span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  max-width: 1380px;
  margin: 0 auto;
}

.section-heading {
  max-width: 760px;
}

.section-heading.centered {
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading h2,
.license-panel h2,
.contact-panel h2 {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.06;
  letter-spacing: 0;
}

.section-heading p,
.license-panel > div > p,
.contact-panel > div > p {
  color: var(--muted);
  font-size: 18px;
}

.workflow-lane {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.workflow-lane span {
  min-height: 74px;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: linear-gradient(180deg, #fff, #f8fbff);
  box-shadow: var(--shadow-sm);
  font-weight: 850;
}

.modules-section {
  background:
    linear-gradient(180deg, #f7faff, #ffffff 44%),
    var(--surface);
}

.module-index {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 1160px;
  margin: 0 auto 54px;
}

.module-index a {
  min-height: 38px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: #28405f;
  background: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 820;
  transition: transform 170ms ease, box-shadow 170ms ease, border-color 170ms ease;
}

.module-index a:hover {
  transform: translateY(-2px);
  border-color: #9fb6d4;
  box-shadow: var(--shadow-sm);
}

.module-showcase {
  display: grid;
  gap: clamp(44px, 6vw, 86px);
  max-width: 1420px;
  margin: 0 auto;
}

.module-panel {
  display: grid;
  grid-template-columns: minmax(300px, 0.44fr) minmax(0, 0.56fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
  scroll-margin-top: 96px;
}

.module-panel.reverse {
  grid-template-columns: minmax(0, 0.56fr) minmax(300px, 0.44fr);
}

.module-panel.reverse .module-copy {
  order: 2;
}

.module-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border: 1px solid rgba(17, 89, 230, 0.2);
  border-radius: var(--radius);
  color: var(--blue);
  background: #edf4ff;
  font-weight: 900;
}

.module-copy h3 {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.08;
}

.module-copy p {
  color: #40516d;
  font-size: 18px;
}

.module-copy ul,
.price-card ul {
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.module-copy li,
.price-card li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 11px;
  color: var(--muted);
  line-height: 1.55;
}

.module-copy li::before,
.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

.screen-frame {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid #cbd9ed;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, #ffffff, #f7faff);
  box-shadow: var(--shadow-md);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.screen-frame::after {
  content: "View full image";
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  color: #fff;
  background: rgba(8, 22, 61, 0.82);
  box-shadow: 0 10px 28px rgba(8, 22, 61, 0.18);
  font-size: 12px;
  font-weight: 850;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.screen-frame:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.screen-frame:hover::after,
.screen-frame:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.screen-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  object-position: center;
  image-rendering: auto;
  transform: translateZ(0);
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 14px;
  padding: clamp(14px, 2vw, 28px);
  background: rgba(4, 12, 31, 0.86);
  backdrop-filter: blur(10px);
}

.image-lightbox[hidden] {
  display: none;
}

.lightbox-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #fff;
}

.lightbox-bar strong {
  font-size: 16px;
}

.lightbox-bar span {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.lightbox-close {
  min-width: 44px;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.lightbox-close:hover,
.lightbox-close:focus-visible {
  background: rgba(255, 255, 255, 0.18);
}

.lightbox-stage {
  min-width: 0;
  min-height: 0;
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: #f8fbff;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}

.lightbox-stage img {
  display: block;
  width: auto;
  max-width: none;
  height: auto;
  margin: 0 auto;
}

.placeholder-frame {
  display: grid;
  min-height: 360px;
  place-items: center;
  padding: 32px;
  background:
    linear-gradient(90deg, rgba(17, 89, 230, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(17, 89, 230, 0.06) 1px, transparent 1px),
    linear-gradient(135deg, #ffffff, #f2f7ff);
  background-size: 28px 28px, 28px 28px, auto;
}

.placeholder-frame div {
  max-width: 420px;
  padding: 28px;
  border: 1px dashed #9fb6d4;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.placeholder-frame strong,
.placeholder-frame span {
  display: block;
}

.placeholder-frame strong {
  color: var(--ink);
  font-size: 20px;
}

.placeholder-frame span,
.chat-card p {
  margin-top: 8px;
  color: var(--muted);
}

.whatsapp-frame {
  background:
    radial-gradient(circle at 24% 18%, rgba(7, 166, 142, 0.18), transparent 24%),
    linear-gradient(135deg, #effdf8, #ffffff);
}

.chat-card {
  border-style: solid !important;
  border-color: rgba(7, 166, 142, 0.24) !important;
  text-align: left !important;
}

.features-section,
.testimonials-section {
  background: var(--bg);
}

.feature-grid,
.industry-grid,
.testimonial-grid,
.pricing-grid,
.license-grid,
.directory-grid {
  display: grid;
  gap: 16px;
  max-width: var(--max);
  margin: 0 auto;
}

.module-directory {
  scroll-margin-top: 86px;
}

.forms-hero {
  background:
    linear-gradient(180deg, #f7faff, #ffffff 72%),
    var(--surface);
}

.forms-gallery-section {
  background: #ffffff;
}

.forms-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1420px;
  margin: 0 auto;
}

.form-shot-card {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.form-shot-card a {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid #cbd9ed;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, #f7faff);
}

.form-shot-card a::after {
  content: "View";
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 6px 9px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(8, 22, 61, 0.82);
  font-size: 12px;
  font-weight: 850;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.form-shot-card a:hover::after,
.form-shot-card a:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.form-shot-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  object-position: center;
  cursor: zoom-in;
}

.form-shot-card strong {
  color: var(--ink);
  font-size: 19px;
  font-weight: 900;
}

.form-shot-card span {
  color: var(--muted);
  line-height: 1.45;
}

.directory-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.directory-grid article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.directory-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  object-position: center;
  image-rendering: auto;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, #f7faff);
  cursor: zoom-in;
}

.screen-frame img {
  cursor: zoom-in;
}

.directory-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
}

.directory-grid p {
  color: var(--muted);
}

.directory-grid a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--blue);
  font-weight: 850;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid article,
.industry-grid article,
.testimonial-grid article,
.price-card,
.license-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-sm);
}

.feature-grid article {
  padding: 24px;
}

.feature-grid strong,
.industry-grid span,
.license-grid strong {
  display: block;
  margin-bottom: 9px;
  color: var(--ink);
  font-size: 18px;
}

.feature-grid p,
.industry-grid p,
.license-grid span {
  margin: 0;
  color: var(--muted);
}

.industry-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.industry-grid article {
  min-height: 220px;
  padding: 22px;
}

.industry-grid span {
  font-size: 20px;
  font-weight: 900;
}

.pricing-section {
  background: linear-gradient(180deg, #ffffff, #f7faff);
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.price-card {
  position: relative;
  padding: 30px;
}

.price-card.featured {
  border-color: rgba(17, 89, 230, 0.42);
  box-shadow: 0 30px 90px rgba(17, 89, 230, 0.16);
}

.price-card h3 {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 24px;
}

.price {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-size: 16px;
  font-weight: 800;
}

.price-card > p:not(.price) {
  min-height: 78px;
  color: var(--muted);
}

.price-card .button {
  width: 100%;
  margin-top: 22px;
}

.licensing-section {
  background: #07152f;
}

.download-section {
  background:
    linear-gradient(180deg, #ffffff, #f7faff),
    var(--surface);
}

.download-panel {
  display: grid;
  grid-template-columns: minmax(320px, 0.62fr) minmax(280px, 0.38fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: stretch;
  max-width: 1220px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-md);
}

.download-copy h2 {
  max-width: 680px;
  margin-bottom: 14px;
  color: var(--ink);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.06;
}

.download-copy p {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
}

.download-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.download-meta div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fbff;
}

.download-meta strong,
.download-meta span {
  display: block;
}

.download-meta strong {
  color: var(--ink);
  font-size: 18px;
}

.download-meta span,
.download-notes,
.download-action-card span {
  color: var(--muted);
}

.download-meta span {
  margin-top: 4px;
  font-size: 12px;
  font-weight: 780;
}

.download-notes {
  margin: 18px 0 0;
  font-size: 14px;
}

.download-action-card {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(17, 89, 230, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, #f8fbff, #ffffff);
}

.download-action-card strong {
  color: var(--ink);
  font-size: 24px;
}

.download-action-card .button {
  width: 100%;
}

.license-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.38fr) minmax(0, 0.62fr);
  gap: clamp(28px, 5vw, 70px);
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  color: #fff;
  background:
    radial-gradient(circle at 100% 0%, rgba(17, 89, 230, 0.35), transparent 32%),
    rgba(255, 255, 255, 0.05);
}

.license-panel h2,
.license-panel > div > p {
  color: #fff;
}

.license-panel > div > p {
  opacity: 0.76;
}

.license-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.license-grid article {
  padding: 20px;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.license-grid strong {
  color: #fff;
}

.license-grid span {
  color: rgba(255, 255, 255, 0.72);
}

.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-grid article {
  padding: 26px;
}

.testimonial-grid p {
  color: #32425c;
  font-size: 17px;
}

.testimonial-grid strong,
.testimonial-grid span {
  display: block;
}

.testimonial-grid strong {
  color: var(--ink);
}

.testimonial-grid span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 780;
}

.contact-section {
  scroll-margin-top: 88px;
  background:
    radial-gradient(circle at 12% 18%, rgba(17, 89, 230, 0.12), transparent 28%),
    radial-gradient(circle at 88% 0%, rgba(7, 166, 142, 0.1), transparent 30%),
    linear-gradient(180deg, #ffffff, #f3f7fd);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(320px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(26px, 4vw, 56px);
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(199, 213, 232, 0.9);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.94)),
    #fff;
  box-shadow: 0 34px 100px rgba(7, 21, 47, 0.13);
}

.contact-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.contact-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin-bottom: 18px;
  padding: 0 12px;
  border: 1px solid rgba(17, 89, 230, 0.18);
  border-radius: var(--radius);
  color: var(--blue);
  background: #edf4ff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-copy h2 {
  max-width: 520px;
}

.contact-copy p {
  max-width: 560px;
}

.contact-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  margin: 20px 0;
}

.contact-proof div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
}

.contact-proof strong,
.contact-proof span {
  display: block;
}

.contact-proof strong {
  color: var(--ink);
  font-size: 18px;
}

.contact-proof span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 780;
}

.contact-steps {
  display: grid;
  gap: 10px;
  width: 100%;
  margin-top: 6px;
}

.contact-steps div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.contact-steps b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: var(--radius);
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
}

.contact-steps span {
  color: #33445f;
  font-weight: 820;
}

.contact-email {
  display: inline-flex;
  margin-top: 20px;
  color: var(--blue);
  font-weight: 900;
  word-break: break-word;
}

.contact-form-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.form-card-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #f8fbff, #fff);
}

.form-card-header strong,
.form-card-header span,
.form-card-header em {
  display: block;
}

.form-card-header strong {
  color: var(--ink);
  font-size: 20px;
}

.form-card-header span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
}

.form-card-header em {
  min-width: max-content;
  padding: 7px 10px;
  border-radius: var(--radius);
  color: var(--green);
  background: #eafaf3;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 22px;
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

.lead-form .wide,
.lead-form button,
.form-status {
  grid-column: 1 / -1;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--text);
  background: #fff;
  font: inherit;
  font-size: 14px;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: none;
  border-color: rgba(17, 89, 230, 0.68);
  box-shadow: 0 0 0 4px rgba(17, 89, 230, 0.1);
}

.lead-form textarea {
  resize: vertical;
}

.lead-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.lead-form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  margin: 0;
  padding: 12px 14px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 850;
}

.form-status[data-state="success"] {
  color: #10643d;
  background: #eafaf3;
  border: 1px solid rgba(16, 100, 61, 0.18);
}

.form-status[data-state="error"] {
  color: #9f1239;
  background: #fff1f2;
  border: 1px solid rgba(159, 18, 57, 0.18);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto auto;
  gap: 30px;
  align-items: start;
  padding: 38px clamp(18px, 5vw, 76px) 46px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.site-footer p {
  margin: 10px 0 0 48px;
  color: var(--muted);
}

.site-footer nav {
  display: grid;
  gap: 10px;
  color: #2d4262;
  font-size: 14px;
  font-weight: 780;
}

.footer-brand {
  font-size: 20px;
}

.footer-brand img {
  width: 36px;
  height: 36px;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: transform 220ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .hero-side-gallery {
    display: none;
  }

  .hero,
  .split-section,
  .module-panel,
  .module-panel.reverse,
  .license-panel,
  .download-panel,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .module-panel.reverse .module-copy {
    order: 0;
  }

  .hero-stage {
    max-width: 920px;
  }

  .feature-grid,
  .testimonial-grid,
  .pricing-grid,
  .directory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .industry-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: auto auto;
    gap: 12px;
  }

  .site-header > .button,
  .site-nav {
    display: none;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-header.nav-open .site-nav {
    display: flex;
    grid-column: 1 / -1;
    justify-self: stretch;
    flex-wrap: wrap;
    gap: 14px;
    padding-top: 10px;
  }

  h1 {
    font-size: 28px;
    line-height: 1.04;
  }

  .section-pad {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero {
    padding-top: 42px;
    padding-bottom: 92px;
  }

  .hero-copy {
    width: min(100%, 340px);
    max-width: 340px;
  }

  .hero-copy h1,
  .hero-copy > p {
    width: 100%;
    max-width: 100%;
  }

  .hero-copy > p {
    font-size: 17px;
  }

  .dashboard-shell {
    max-width: 100%;
  }

  .kpi-row,
  .ops-grid {
    grid-template-columns: 1fr;
  }

  .proof-band {
    grid-template-columns: 1fr;
    max-width: calc(100% - 32px);
    margin-top: -58px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(247, 250, 255, 0.24) 0%, rgba(247, 250, 255, 0.12) 46%, rgba(7, 21, 47, 0.05) 100%),
      linear-gradient(90deg, rgba(247, 250, 255, 0.2), rgba(247, 250, 255, 0.02));
  }

  .hero-actions,
  .lead-form {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    white-space: normal;
  }

  .dashboard-body,
  .ops-grid,
  .kpi-row,
  .proof-band,
  .workflow-lane,
  .download-meta,
  .feature-grid,
  .industry-grid,
  .testimonial-grid,
  .pricing-grid,
  .license-grid,
  .directory-grid,
  .forms-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .mock-sidebar {
    display: none;
  }

  .hero-stage {
    min-height: 0;
  }

  .field-visual {
    position: static;
    width: 100%;
    margin-top: 14px;
  }

  .screen-frame img {
    aspect-ratio: 4 / 3;
  }

  .placeholder-frame {
    min-height: 280px;
  }

  .lead-form .wide,
  .lead-form button,
  .form-status {
    grid-column: auto;
  }

  .contact-panel {
    padding: 18px;
  }

  .contact-proof,
  .form-card-header {
    grid-template-columns: 1fr;
  }

  .contact-proof {
    display: grid;
  }

  .form-card-header {
    display: grid;
  }

  .form-card-header em {
    width: fit-content;
  }

  .lead-form {
    padding: 18px;
  }

  .site-footer p {
    margin-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-side-gallery img {
    animation: none;
  }

  .hero-side-gallery img:first-child {
    opacity: 1;
    transform: none;
  }
}
