:root {
  --navy: #071a3b;
  --blue-950: #002860;
  --blue-900: #003180;
  --blue-800: #0043a9;
  --blue-700: #075bd6;
  --blue-600: #0a67e8;
  --blue-100: #eaf3ff;
  --blue-50: #f5f9ff;
  --yellow: #ffc810;
  --yellow-deep: #f0b800;
  --green: #18a74c;
  --ink: #0a1a3d;
  --body: #2e394c;
  --muted: #667085;
  --line: #e4e9f1;
  --panel: #ffffff;
  --soft: #f8faff;
  --page-shadow: 0 0 40px rgba(13, 55, 105, .08);
  --radius: 10px;
  --radius-sm: 6px;
  --site-max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: #f5f7fb; }
body {
  margin: 0;
  color: var(--ink);
  background: #f5f7fb;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }

.site {
  width: min(100%, var(--site-max));
  margin: 0 auto;
  background: #fff;
  box-shadow: var(--page-shadow);
  overflow: clip;
}

/* Desktop presentation scale: browser 100% visually matches the previous ~125% view. */
@media (min-width: 981px) {
  body { overflow-x: hidden; }
  .site {
    width: min(80%, var(--site-max));
    transform: scale(1.25);
    transform-origin: top center;
  }
}

.site-header {
  height: 62px;
  padding: 0 25px;
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  column-gap: 20px;
  background: #fff;
  border-bottom: 1px solid #f1f3f6;
  position: relative;
  z-index: 30;
}
.brand { display: inline-flex; align-items: center; width: 151px; }
.brand img { width: 147px; height: 44px; object-fit: contain; display: block; }

.desktop-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 24px;
  height: 100%;
}
.nav-link,
.nav-button,
.login-link {
  border: 0;
  background: transparent;
  padding: 8px 0;
  font-size: 11px;
  font-weight: 700;
  color: #0e2148;
  cursor: pointer;
  white-space: nowrap;
}
.nav-link:hover,
.nav-button:hover,
.login-link:hover { color: var(--blue-700); }
.nav-with-caret::after {
  content: "⌄";
  margin-left: 4px;
  font-size: 10px;
  position: relative;
  top: -1px;
}
.nav-menu-wrap { position: relative; }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  width: 175px;
  padding: 8px;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(12, 35, 71, .18);
  border: 1px solid var(--line);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: .18s ease;
}
.nav-dropdown.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 10px 11px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 650;
  color: #24344e;
}
.nav-dropdown a:hover { background: var(--blue-50); color: var(--blue-700); }
.header-actions { display: flex; align-items: center; gap: 16px; }
.login-link { color: #0755c9; }
.btn {
  border: 0;
  border-radius: 5px;
  min-height: 38px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-weight: 800;
  font-size: 12px;
  line-height: 1;
  cursor: pointer;
  transition: transform .14s ease, box-shadow .14s ease, background .14s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible,
.nav-link:focus-visible,
.nav-button:focus-visible,
.login-link:focus-visible,
.footer-columns button:focus-visible,
.enterprise-line button:focus-visible {
  outline: 3px solid rgba(10, 103, 232, .28);
  outline-offset: 3px;
}
.btn-primary {
  color: #fff;
  background: linear-gradient(180deg, #0b69e9 0%, #0756cb 100%);
  box-shadow: 0 5px 12px rgba(5, 90, 214, .18);
}
.btn-primary:hover { background: #0758ce; }
.btn-header { min-width: 110px; min-height: 34px; font-size: 11px; }
.mobile-menu-button, .mobile-nav { display: none; }

.hero {
  min-height: 400px;
  padding: 38px 35px 30px;
  display: grid;
  grid-template-columns: 38% 62%;
  align-items: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(0, 51, 132, 1) 0%, rgba(0, 52, 132, .99) 38%, rgba(0, 46, 117, .98) 65%, rgba(0, 35, 91, 1) 100%);
}
.hero-grid-texture {
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: .14;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 58%, #000 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .22;
  background:
    radial-gradient(circle at 74% 38%, rgba(24,115,204,.7) 0, transparent 34%),
    linear-gradient(180deg, transparent 0%, rgba(0, 15, 51, .26) 100%);
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(32px); opacity: .24; z-index: -1; }
.hero-glow-one { width: 420px; height: 420px; background: #0068d7; right: 70px; top: -115px; }
.hero-glow-two { width: 270px; height: 270px; background: #0079f5; left: -80px; bottom: -150px; }
.hero-copy { position: relative; z-index: 3; align-self: start; padding-top: 2px; }
.hero h1 {
  margin: 0 0 16px;
  color: #fff;
  font-size: clamp(31px, 4.25vw, 50px);
  line-height: 1.04;
  letter-spacing: -.02em;
  font-weight: 850;
}
.hero h1 span { color: var(--yellow); }
.hero-lede {
  margin: 0 0 18px;
  color: rgba(255,255,255,.95);
  font-size: clamp(13px, 1.55vw, 18px);
  line-height: 1.45;
  font-weight: 580;
}
.hero-list { list-style: none; padding: 0; margin: 0 0 22px; display: grid; gap: 12px; }
.hero-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 720;
  font-size: clamp(11px, 1.25vw, 14px);
}
.check-dot {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0b4aa8;
  background: var(--yellow);
  font-size: 12px;
  font-weight: 900;
}
.hero-actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.btn-yellow {
  min-height: 41px;
  color: #0b234a;
  background: linear-gradient(180deg, #ffd133 0%, #ffc20c 100%);
  box-shadow: 0 5px 12px rgba(0,0,0,.14);
}
.btn-yellow:hover { background: #ffd029; }
.btn-outline-light {
  min-height: 41px;
  color: #fff;
  border: 1px solid rgba(255,255,255,.92);
  background: rgba(0, 35, 93, .35);
}
.micro-copy { margin: 13px 0 0; color: rgba(255,255,255,.88); font-size: 11px; font-weight: 650; }
.micro-copy span { color: var(--yellow); }
.hero-visual {
  min-width: 0;
  position: relative;
  z-index: 2;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.hero-visual {
  min-width: 0;
  position: relative;
  z-index: 2;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.mockup-scene {
  position: relative;
  width: min(100%, 760px);
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.mockup-board {
  width: 100%;
  min-height: 500px;
  border-radius: 22px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 170px 1fr;
  background: linear-gradient(180deg, #03245f 0%, #06255b 100%);
  box-shadow:
    0 20px 35px rgba(0,0,0,.18),
    inset 0 0 0 1px rgba(255,255,255,.08);
}
.mockup-sidebar {
  background: linear-gradient(180deg, #062155 0%, #04173f 100%);
  color: #fff;
  padding: 26px 0 24px;
  display: flex;
  flex-direction: column;
}
.mockup-brand {
  display: grid;
  place-items: center;
  gap: 11px;
  margin-bottom: 22px;
}
.mockup-brand-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 900;
  letter-spacing: -.03em;
  font-size: 23px;
  color: #fff;
  background: linear-gradient(180deg,#2886ff 0%, #105bdb 100%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.18);
}
.mockup-brand-text {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -.02em;
}
.mockup-nav {
  display: grid;
  gap: 6px;
  padding-right: 18px;
}
.mockup-nav-item {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 0 22px;
  color: rgba(255,255,255,.92);
  font-size: 12px;
  font-weight: 550;
  position: relative;
}
.mockup-nav-item.active {
  background: rgba(16, 83, 195, .45);
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  font-weight: 700;
}
.mockup-nav-item.active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  bottom: 7px;
  width: 4px;
  background: #1e7cff;
  border-radius: 0 999px 999px 0;
}
.mockup-nav-icon {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.55);
  font-size: 12px;
  line-height: 1;
}
.mockup-desktop {
  background: #fff;
  padding: 20px 22px 22px 24px;
  position: relative;
}
.mockup-title {
  font-size: 22px;
  line-height: 1.12;
  font-weight: 850;
  color: #0a1838;
  margin-bottom: 10px;
}
.mockup-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 30px;
  padding: 0 11px;
  border-radius: 9px;
  background: #e8f8eb;
  color: #109046;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 12px;
}
.status-check {
  width: 15px;
  height: 15px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: #16a34a;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
}
.mockup-summary {
  border: 1px solid #e6eaf1;
  border-radius: 11px;
  overflow: hidden;
  background: #fff;
}
.mockup-summary-grid {
  display: grid;
  grid-template-columns: 1.65fr .55fr .55fr;
}
.mockup-summary-grid.top { border-bottom: 1px solid #e6eaf1; }
.summary-cell {
  min-height: 54px;
  padding: 10px 12px 9px;
  border-right: 1px solid #e6eaf1;
}
.summary-cell:last-child { border-right: 0; }
.summary-label {
  color: #59647a;
  font-size: 10px;
  line-height: 1.2;
  margin-bottom: 5px;
}
.summary-label.second { margin-top: 5px; margin-bottom: 2px; }
.summary-value {
  color: #18243d;
  font-size: 11px;
  line-height: 1.25;
  font-weight: 550;
}
.summary-value.stack { line-height: 1.25; }
.summary-subvalue {
  color: #111a32;
  font-size: 11px;
  font-weight: 800;
  margin-top: 4px;
}
.summary-value.company { margin-top: 0; }
.mockup-tabs {
  display: flex;
  align-items: flex-end;
  gap: 11px;
  padding: 8px 4px 0;
  margin: 8px 0 0;
  border-bottom: 1px solid #e7ebf1;
  overflow: hidden;
}
.mockup-tabs span {
  position: relative;
  padding: 7px 7px 9px;
  color: #3e4b67;
  font-size: 10px;
  line-height: 1;
  white-space: nowrap;
}
.mockup-tabs span.active {
  color: #0958d1;
  font-weight: 700;
}
.mockup-tabs span.active::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: -1px;
  height: 3px;
  border-radius: 99px;
  background: #0d63e2;
}
.mockup-checklist-card {
  margin-top: 9px;
  border: 1px solid #e6eaf1;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}
.mockup-checklist-title {
  padding: 11px 14px 10px;
  border-bottom: 1px solid #e6eaf1;
  font-size: 12px;
  font-weight: 800;
  color: #0f1832;
}
.mockup-row {
  min-height: 32px;
  padding: 0 14px;
  display: grid;
  grid-template-columns: 1fr 34px;
  align-items: center;
  color: #192540;
  font-size: 10px;
  border-bottom: 1px solid #eef2f6;
}
.mockup-row:last-child { border-bottom: 0; }
.row-status {
  justify-self: center;
  width: 19px;
  height: 19px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 11px;
}
.row-status.ok {
  background: #15a34a;
  color: #fff;
}
.row-status.neutral {
  width: auto;
  height: auto;
  background: transparent;
  color: #808aa0;
  font-size: 16px;
}

.mockup-phone {
  position: absolute;
  right: -8px;
  bottom: -12px;
  z-index: 5;
}
.phone-shell {
  width: 265px;
  min-height: 458px;
  border-radius: 32px;
  padding: 11px;
  background: linear-gradient(180deg, #18181b 0%, #050505 100%);
  box-shadow: 0 18px 28px rgba(0,0,0,.33);
  position: relative;
}
.phone-notch {
  position: absolute;
  left: 50%;
  top: 10px;
  transform: translateX(-50%);
  width: 108px;
  height: 22px;
  border-radius: 0 0 16px 16px;
  background: #080808;
}
.phone-screen {
  min-height: 436px;
  border-radius: 23px;
  background: #fff;
  overflow: hidden;
  padding: 10px 11px 12px;
}
.phone-statusbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 7px 6px;
  color: #0d1427;
  font-size: 12px;
  font-weight: 700;
}
.status-icons { letter-spacing: 1px; font-size: 12px; }
.phone-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 8px 8px;
}
.phone-title {
  color: #0b1633;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.15;
}
.phone-close {
  color: #1f2840;
  font-size: 24px;
  line-height: 1;
  margin-top: -2px;
}
.mockup-status-pill.mobile {
  height: 29px;
  padding-inline: 12px;
  font-size: 12px;
  margin: 0 7px 9px;
}
.phone-summary-card,
.phone-list-card {
  margin: 0 7px;
  border: 1px solid #e7ebf1;
  border-radius: 9px;
  overflow: hidden;
  background: #fff;
}
.phone-summary-row,
.phone-list-row {
  min-height: 35px;
  display: grid;
  align-items: center;
  border-bottom: 1px solid #eef2f6;
}
.phone-summary-row:last-child,
.phone-list-row:last-child { border-bottom: 0; }
.phone-summary-row {
  grid-template-columns: 50px 1fr auto;
  gap: 7px;
  padding: 0 10px;
}
.phone-label {
  color: #626d83;
  font-size: 12px;
}
.phone-value {
  color: #18243d;
  font-size: 12px;
  font-weight: 550;
}
.phone-value.green { color: #109046; font-weight: 800; }
.phone-chevron {
  color: #7f8aa2;
  font-size: 16px;
  line-height: 1;
}
.phone-tabs {
  display: flex;
  gap: 16px;
  margin: 10px 7px 0;
  border-bottom: 1px solid #eaedf2;
  padding: 0 3px;
}
.phone-tabs span {
  position: relative;
  padding: 9px 0 10px;
  font-size: 12px;
  color: #394760;
}
.phone-tabs span.active {
  color: #0958d1;
  font-weight: 700;
}
.phone-tabs span.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 3px;
  border-radius: 99px;
  background: #0d63e2;
}
.phone-list-card { margin-top: 12px; }
.phone-list-row {
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 0 12px;
  color: #18243d;
  font-size: 12px;
}
.row-status.small {
  width: 18px;
  height: 18px;
  font-size: 12px;
}
.phone-action-btn {
  margin: 10px 24px 0;
  height: 35px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(180deg, #0b69e9 0%, #0755cb 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}
.camera-icon { font-size: 15px; }

.trust-strip {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 50px;
  background: linear-gradient(180deg, #fff 0%, #f7f9fc 100%);
  border-bottom: 1px solid #eef1f6;
}
.trust-strip img { width: 100%; max-width: 1010px; height: auto; display: block; }

.features-section { padding: 24px 58px 21px; background: #fff; }
.section-heading { text-align: center; }
.section-heading h2 {
  margin: 0;
  color: #0a1938;
  font-size: clamp(22px, 2.6vw, 31px);
  letter-spacing: -.02em;
  line-height: 1.12;
  font-weight: 850;
}
.section-heading p { margin: 8px 0 0; color: #4c5566; font-size: 12px; line-height: 1.4; }
.feature-grid {
  margin-top: 19px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 25px;
  row-gap: 26px;
}
.feature-card { display: grid; grid-template-columns: 48px 1fr; gap: 11px; align-items: start; }
.feature-icon {
  width: 43px;
  height: 43px;
  border-radius: 50%;
  background: #f3f7fe;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-icon svg, .workflow-icon svg, .cta-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: #0565e7;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.feature-card h3 { margin: 2px 0 6px; font-size: 12px; line-height: 1.2; font-weight: 850; }
.feature-card p { margin: 0; color: #505a6a; font-size: 10px; line-height: 1.53; }

.workflow-section { padding: 0 43px 24px; background: #fff; }
.compact-heading h2 { font-size: clamp(20px, 2.3vw, 26px); }
.compact-heading p { margin-top: 7px; }
.workflow-card {
  margin-top: 14px;
  padding: 22px 22px 18px;
  border-radius: 9px;
  background: linear-gradient(180deg, #fbfdff 0%, #f5f8fc 100%);
  box-shadow: inset 0 0 0 1px #f0f3f8;
  display: grid;
  grid-template-columns: 1fr 34px 1fr 34px 1fr 34px 1fr 34px 1fr;
  align-items: start;
}
.workflow-step { text-align: center; min-width: 0; }
.workflow-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  margin: 0 auto 9px;
  background: #edf4fd;
  display: flex;
  align-items: center;
  justify-content: center;
}
.workflow-icon svg { width: 30px; height: 30px; }
.workflow-step h3 { margin: 0 0 5px; font-size: 10.5px; font-weight: 850; line-height: 1.15; }
.workflow-step p { margin: 0; color: #596273; font-size: 9px; line-height: 1.42; }
.workflow-arrow { padding-top: 16px; text-align: center; color: #b4c5dd; font-size: 25px; font-weight: 400; }

.field-section {
  min-height: 353px;
  padding: 0 38px 0 0;
  display: grid;
  grid-template-columns: 27% 32% 41%;
  align-items: center;
  overflow: hidden;
  background: #fff;
}
.field-phone { align-self: end; display: flex; align-items: flex-end; justify-content: flex-start; }
.field-phone img { width: 100%; max-width: 320px; height: auto; display: block; }
.field-copy { padding: 10px 14px 0 8px; }
.field-copy h2 { margin: 0 0 12px; font-size: clamp(24px, 3.1vw, 36px); line-height: 1.02; letter-spacing: -.02em; font-weight: 850; }
.field-copy > p { margin: 0 0 18px; color: #414b5c; font-size: 11px; line-height: 1.55; }
.field-copy ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.field-copy li { display: flex; align-items: center; gap: 9px; font-size: 10.5px; font-weight: 700; }
.field-copy li span {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #0c64e1;
  color: #fff;
  font-size: 9px;
}
.report-preview { display: flex; justify-content: flex-end; align-items: center; }
.report-preview img {
  width: 100%;
  max-width: 450px;
  height: auto;
  display: block;
  filter: drop-shadow(0 6px 10px rgba(13, 30, 57, .10));
}

.pricing-section {
  padding: 20px 62px 20px;
  background: linear-gradient(180deg, #f7f8fb 0%, #f1f4f8 100%);
  border-top: 1px solid #edf0f5;
}
.pricing-heading h2 { font-size: clamp(23px, 2.7vw, 31px); }
.pricing-grid {
  margin-top: 19px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.pricing-card {
  position: relative;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #e3e7ee;
  box-shadow: 0 3px 10px rgba(18, 39, 69, .07);
  overflow: hidden;
}
.pricing-card-inner { padding: 20px 18px 16px; height: 100%; display: flex; flex-direction: column; }
.pricing-card h3 { margin: 0 0 4px; font-size: 20px; line-height: 1; font-weight: 850; }
.plan-subtitle { margin: 0 0 14px; color: #586273; font-size: 10.5px; }
.price { height: 43px; display: flex; align-items: baseline; color: #034dac; margin-bottom: 12px; }
.currency { font-size: 24px; font-weight: 850; }
.price-number { font-size: 35px; font-weight: 900; letter-spacing: -.03em; }
.price-suffix { margin-left: 5px; color: #38445a; font-size: 8.5px; }
.plan-features { list-style: none; padding: 0; margin: 0 0 18px; display: grid; gap: 10px; flex: 1; }
.plan-features li { position: relative; padding-left: 17px; color: #293346; font-size: 10px; line-height: 1.25; }
.plan-features li::before { content: "✓"; position: absolute; left: 0; top: 0; color: #075ed9; font-weight: 900; }
.btn-plan { width: 100%; min-height: 35px; font-size: 10px; border-radius: 4px; }
.btn-plan-outline { color: #075dd7; background: #fff; border: 1px solid #1769df; }
.btn-plan-outline:hover { background: #f4f8ff; }
.btn-plan-primary { color: #fff; background: linear-gradient(180deg,#0869e9,#0758d1); }
.popular-card { padding-top: 22px; border-color: #d9e4f8; }
.popular-card .pricing-card-inner { padding-top: 14px; }
.popular-ribbon {
  position: absolute;
  inset: 0 0 auto 0;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(180deg,#096bf0,#0656c9);
  font-size: 9px;
  font-weight: 800;
}
.enterprise-line { margin: 16px 0 0; text-align: center; color: #344054; font-size: 10.5px; }
.enterprise-line button { border: 0; background: none; color: #075fd9; font-weight: 800; cursor: pointer; padding: 0; }

.bottom-cta {
  min-height: 95px;
  padding: 13px 68px;
  display: grid;
  grid-template-columns: 78px 1fr auto;
  align-items: center;
  gap: 12px;
  color: #fff;
  background: linear-gradient(102deg, #003b9e 0%, #004daf 65%, #003d95 100%);
}
.cta-icon { width: 58px; height: 64px; display: flex; align-items: center; justify-content: center; }
.cta-icon svg { width: 54px; height: 60px; stroke: #fff; }
.cta-icon svg circle { fill: var(--yellow); stroke: var(--yellow); }
.cta-icon svg path:last-child { stroke: #0a58c5; }
.bottom-cta-copy h2 { margin: 0 0 4px; color: #fff; font-size: clamp(17px,2.2vw,26px); line-height: 1.1; }
.bottom-cta-copy p { margin: 0; font-size: 10.5px; line-height: 1.35; font-weight: 650; color: rgba(255,255,255,.94); }
.bottom-cta-action { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.cta-trial { min-width: 220px; justify-content: space-between; padding: 0 16px; }
.bottom-cta-action > span { font-size: 8.5px; color: rgba(255,255,255,.88); }

.site-footer { padding: 17px 35px 15px; background: #fff; }
.footer-brand img { width: 127px; height: auto; display: block; }
.footer-columns {
  margin-top: -28px;
  padding-left: 225px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.footer-columns h3 { margin: 0 0 7px; font-size: 10px; font-weight: 850; }
.footer-columns a,
.footer-columns button {
  width: fit-content;
  display: block;
  border: 0;
  background: none;
  padding: 0;
  margin: 0 0 5px;
  color: #425067;
  cursor: pointer;
  font-size: 9.5px;
}
.footer-columns a:hover,
.footer-columns button:hover { color: var(--blue-700); }
.socials { display: flex; gap: 9px; }
.socials a {
  width: 23px;
  height: 23px;
  margin: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #edf1f6;
  color: #596779;
  font-size: 9px;
  font-weight: 850;
}
.footer-bottom {
  margin-top: 14px;
  padding-top: 11px;
  border-top: 1px solid #eceff3;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #7b8595;
  font-size: 8.5px;
}
.footer-bottom div { display: flex; gap: 9px; align-items: center; }

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(3, 14, 37, .58);
  backdrop-filter: blur(3px);
}
.modal {
  position: fixed;
  z-index: 100;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(92vw, 470px);
  max-height: 90vh;
  overflow: auto;
  padding: 28px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 24px 70px rgba(0, 23, 68, .28);
}
.compact-modal { width: min(92vw, 410px); }
.modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 0;
  background: #f2f5f9;
  color: #405069;
  font-size: 22px;
  cursor: pointer;
}
.modal-badge { color: #075ed8; font-size: 10px; font-weight: 900; letter-spacing: .08em; }
.modal h2 { margin: 8px 0 8px; font-size: 26px; letter-spacing: -.025em; }
.modal > p { margin: 0 0 18px; color: #586273; font-size: 13px; line-height: 1.45; }
.modal-form { display: grid; gap: 12px; }
.modal-form label { display: grid; gap: 6px; color: #334155; font-size: 11px; font-weight: 750; }
.modal-form input,
.modal-form select,
.modal-form textarea {
  width: 100%;
  border: 1px solid #d8dfE8;
  border-radius: 7px;
  background: #fff;
  color: #15233d;
  padding: 10px 11px;
  outline: none;
  font-size: 13px;
}
.modal-form input:focus,
.modal-form select:focus,
.modal-form textarea:focus { border-color: #0b67e5; box-shadow: 0 0 0 3px rgba(11,103,229,.12); }
.modal-submit { margin-top: 4px; min-height: 42px; }
.form-status { min-height: 16px; font-size: 11px; color: #16783f; font-weight: 700; }
body.modal-open { overflow: hidden; }

[hidden] { display: none !important; }

@media (min-width: 810px) and (max-width: 980px) {
  .desktop-nav { gap: 16px; }
  .site-header { grid-template-columns: 165px 1fr auto; padding-inline: 18px; }
  .nav-link, .nav-button, .login-link { font-size: 11px; }
  .header-actions { gap: 10px; }
  .hero { grid-template-columns: 40% 60%; padding-inline: 35px 12px; }
  .pricing-section { padding-inline: 60px; }
}

@media (max-width: 809px) {
  .site { box-shadow: none; }
  .site-header { height: 60px; grid-template-columns: 160px 1fr auto; column-gap: 8px; padding: 0 20px; }
  .desktop-nav { gap: 19px; }
  .nav-link, .nav-button, .login-link { font-size: 10px; }
  .btn-header { min-width: 91px; font-size: 9px; }
  .hero { min-height: 400px; grid-template-columns: 39% 61%; padding: 39px 34px 29px; }
  .hero h1 { font-size: 34px; }
  .hero-lede { font-size: 13px; }
  .hero-list li { font-size: 11px; }
  .mockup-scene { width: min(100%, 700px); min-height: 452px; }
  .mockup-phone { right: -14px; bottom: -24px; }
  .phone-shell { width: 248px; min-height: 438px; }
  .phone-screen { min-height: 414px; }
  .features-section { padding-inline: 58px; }
  .field-copy h2 { font-size: 24px; }
  .pricing-section { padding-inline: 62px; }
}

@media (max-width: 720px) {
  .site-header { grid-template-columns: 1fr auto; height: 64px; }
  .brand { width: 147px; }
  .desktop-nav, .header-actions { display: none; }
  .mobile-menu-button {
    display: inline-grid;
    gap: 4px;
    width: 38px;
    height: 38px;
    place-content: center;
    border: 0;
    border-radius: 7px;
    background: #f3f6fb;
  }
  .mobile-menu-button span { width: 19px; height: 2px; background: #0e2148; border-radius: 2px; }
  .mobile-nav {
    position: absolute;
    top: 64px;
    right: 12px;
    z-index: 40;
    width: min(290px, calc(100vw - 24px));
    padding: 12px;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 18px 42px rgba(12, 35, 71, .2);
  }
  .mobile-nav.open { display: grid; gap: 3px; }
  .mobile-nav a,
  .mobile-nav > button:not(.btn) { border: 0; background: transparent; text-align: left; padding: 11px 12px; font-size: 13px; font-weight: 750; }
  .mobile-nav .btn { margin-top: 5px; }

  .hero { grid-template-columns: 1fr; padding: 38px 24px 28px; }
  .hero-copy { max-width: 560px; }
  .hero h1 { font-size: clamp(36px, 10vw, 50px); }
  .hero-lede { font-size: 15px; }
  .hero-list li { font-size: 13px; }
  .desktop-break { display: none; }
  .hero-visual { margin: 28px -16px -26px 10px; }
  .mockup-scene { width: 100%; min-height: 430px; }
  .mockup-board { grid-template-columns: 124px 1fr; min-height: 385px; }
  .mockup-sidebar { padding-top: 20px; }
  .mockup-brand-icon { width: 38px; height: 38px; font-size: 18px; border-radius: 11px; }
  .mockup-brand-text { font-size: 14px; }
  .mockup-nav-item { min-height: 40px; padding: 0 14px; gap: 8px; font-size: 11px; }
  .mockup-nav-icon { width: 17px; height: 17px; font-size: 9px; }
  .mockup-desktop { padding: 18px 16px 20px 18px; }
  .mockup-title { font-size: 19px; margin-bottom: 10px; }
  .mockup-status-pill { height: 30px; font-size: 12px; padding-inline: 10px; margin-bottom: 12px; }
  .status-check { width: 15px; height: 15px; font-size: 10px; }
  .summary-cell { min-height: 63px; padding: 12px 10px; }
  .summary-label, .summary-value, .summary-subvalue { font-size: 10px; }
  .mockup-tabs { gap: 6px; padding-top: 8px; margin-top: 10px; }
  .mockup-tabs span { padding: 8px 4px 10px; font-size: 9px; }
  .mockup-checklist-card { margin-top: 16px; }
  .mockup-checklist-title { padding: 12px 14px; font-size: 12px; }
  .mockup-row { min-height: 41px; padding: 0 14px; grid-template-columns: 1fr 30px; font-size: 10px; }
  .row-status { width: 18px; height: 18px; font-size: 11px; }
  .row-status.neutral { font-size: 16px; }
  .mockup-phone { right: -4px; bottom: -6px; }
  .phone-shell { width: 175px; min-height: 308px; padding: 8px; border-radius: 24px; }
  .phone-notch { width: 78px; height: 18px; top: 8px; }
  .phone-screen { min-height: 292px; border-radius: 18px; padding: 8px; }
  .phone-statusbar { padding: 4px 6px 6px; font-size: 9px; }
  .phone-header { padding: 4px 6px 6px; }
  .phone-title { font-size: 12px; }
  .phone-close { font-size: 18px; }
  .mockup-status-pill.mobile { height: 24px; margin: 0 6px 8px; font-size: 10px; }
  .phone-summary-card, .phone-list-card { margin: 0 6px; border-radius: 8px; }
  .phone-summary-row { grid-template-columns: 40px 1fr auto; gap: 5px; min-height: 26px; padding: 0 8px; }
  .phone-list-row { min-height: 24px; padding: 0 8px; font-size: 9px; }
  .phone-label, .phone-value { font-size: 9px; }
  .phone-tabs { margin: 10px 6px 0; gap: 14px; }
  .phone-tabs span { font-size: 9px; padding: 8px 0 9px; }
  .row-status.small { width: 14px; height: 14px; font-size: 9px; }
  .phone-action-btn { margin: 8px 20px 0; height: 26px; border-radius: 7px; font-size: 10px; }
  .trust-strip { padding: 12px 20px; }
  .features-section { padding: 28px 24px; }
  .feature-grid { grid-template-columns: 1fr 1fr; gap: 24px 20px; }
  .workflow-section { padding: 0 20px 28px; }
  .workflow-card { grid-template-columns: 1fr; gap: 14px; padding: 20px; }
  .workflow-step { display: grid; grid-template-columns: 58px 1fr; grid-template-rows: auto auto; column-gap: 12px; text-align: left; align-items: center; }
  .workflow-icon { grid-row: 1 / span 2; margin: 0; }
  .workflow-step h3 { font-size: 12px; }
  .workflow-step p { font-size: 10px; }
  .workflow-arrow { display: none; }
  .field-section { grid-template-columns: 1fr; padding: 20px 24px 0; }
  .field-copy { order: 1; padding: 0; }
  .field-phone { order: 2; width: 68%; margin-top: 24px; }
  .report-preview { order: 3; width: 82%; justify-self: end; margin-top: -62%; }
  .pricing-section { padding: 28px 22px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card { max-width: 430px; width: 100%; justify-self: center; }
  .bottom-cta { grid-template-columns: 60px 1fr; padding: 20px 24px; }
  .bottom-cta-action { grid-column: 1 / -1; width: 100%; margin-top: 8px; }
  .cta-trial { width: 100%; max-width: 410px; }
  .site-footer { padding: 24px; }
  .footer-columns { margin-top: 24px; padding-left: 0; grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .feature-grid { grid-template-columns: 1fr; }
  .field-phone { width: 83%; }
  .report-preview { width: 90%; margin-top: -70%; }
  .footer-columns { grid-template-columns: 1fr 1fr; gap: 22px; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 720px) {
  .site-header {
    position: sticky;
    top: 0;
    z-index: 60;
  }
  .mobile-nav {
    left: 12px;
    right: 12px;
    width: auto;
  }
  .hero {
    min-height: auto;
    gap: 18px;
    padding: 32px 18px 22px;
  }
  .hero-copy {
    max-width: none;
  }
  .hero h1 {
    font-size: clamp(31px, 10vw, 42px);
    margin-bottom: 12px;
  }
  .hero-lede {
    font-size: 14px;
    margin-bottom: 14px;
  }
  .hero-list {
    gap: 10px;
    margin-bottom: 18px;
  }
  .hero-list li {
    font-size: 12px;
    line-height: 1.35;
    align-items: flex-start;
  }
  .hero-actions {
    gap: 10px;
  }
  .hero-actions .btn {
    min-height: 44px;
  }
  .micro-copy {
    font-size: 10px;
  }
  .hero-visual {
    margin: 8px 0 0;
    justify-content: center;
  }
  .mockup-scene {
    width: 100%;
    max-width: 560px;
    min-height: 375px;
  }
  .mockup-board {
    width: calc(100% - 42px);
    min-height: 345px;
    grid-template-columns: 104px 1fr;
    border-radius: 18px;
  }
  .mockup-sidebar {
    padding: 18px 0 18px;
  }
  .mockup-brand {
    gap: 9px;
    margin-bottom: 16px;
  }
  .mockup-brand-icon {
    width: 34px;
    height: 34px;
    font-size: 16px;
    border-radius: 10px;
  }
  .mockup-brand-text {
    font-size: 12px;
  }
  .mockup-nav {
    padding-right: 10px;
    gap: 5px;
  }
  .mockup-nav-item {
    min-height: 34px;
    padding: 0 10px;
    gap: 7px;
    font-size: 10px;
  }
  .mockup-nav-icon {
    width: 14px;
    height: 14px;
    font-size: 8px;
    border-radius: 4px;
  }
  .mockup-desktop {
    padding: 16px 12px 16px 14px;
  }
  .mockup-title {
    font-size: 16px;
    margin-bottom: 8px;
  }
  .mockup-status-pill {
    height: 26px;
    padding-inline: 8px;
    font-size: 10px;
    border-radius: 7px;
    margin-bottom: 10px;
  }
  .status-check {
    width: 13px;
    height: 13px;
    font-size: 8px;
  }
  .mockup-summary-grid {
    grid-template-columns: 1.2fr .8fr;
  }
  .mockup-summary-grid.top .summary-cell:last-child,
  .mockup-summary-grid.bottom .summary-cell:last-child {
    grid-column: 1 / -1;
    border-right: 0;
    border-top: 1px solid #e6eaf1;
  }
  .summary-cell {
    min-height: 54px;
    padding: 9px 8px;
  }
  .summary-label, .summary-value, .summary-subvalue {
    font-size: 9px;
  }
  .summary-label {
    margin-bottom: 5px;
  }
  .summary-subvalue {
    margin-top: 3px;
  }
  .mockup-tabs {
    gap: 4px;
    margin-top: 8px;
    padding-top: 6px;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .mockup-tabs::-webkit-scrollbar {
    display: none;
  }
  .mockup-tabs span {
    flex: 0 0 auto;
    padding: 7px 4px 8px;
    font-size: 8px;
  }
  .mockup-checklist-card {
    margin-top: 10px;
    border-radius: 9px;
  }
  .mockup-checklist-title {
    padding: 9px 10px;
    font-size: 10px;
  }
  .mockup-row {
    min-height: 28px;
    padding: 0 10px;
    grid-template-columns: 1fr 22px;
    font-size: 8px;
  }
  .row-status {
    width: 14px;
    height: 14px;
    font-size: 8px;
  }
  .row-status.neutral {
    font-size: 12px;
  }
  .mockup-phone {
    right: 0;
    bottom: -2px;
  }
  .phone-shell {
    width: 148px;
    min-height: 262px;
    padding: 7px;
    border-radius: 21px;
  }
  .phone-notch {
    width: 66px;
    height: 14px;
    top: 7px;
    border-radius: 0 0 12px 12px;
  }
  .phone-screen {
    min-height: 248px;
    padding: 7px 7px 9px;
    border-radius: 16px;
  }
  .phone-statusbar {
    padding: 3px 5px 5px;
    font-size: 8px;
  }
  .phone-header {
    padding: 3px 5px 5px;
  }
  .phone-title {
    font-size: 10px;
  }
  .phone-close {
    font-size: 15px;
    margin-top: -1px;
  }
  .mockup-status-pill.mobile {
    height: 20px;
    font-size: 8px;
    margin: 0 5px 6px;
    padding-inline: 8px;
  }
  .phone-summary-card,
  .phone-list-card {
    margin: 0 5px;
    border-radius: 7px;
  }
  .phone-summary-row {
    grid-template-columns: 34px 1fr auto;
    gap: 4px;
    min-height: 22px;
    padding: 0 7px;
  }
  .phone-list-row {
    min-height: 20px;
    padding: 0 7px;
    font-size: 8px;
  }
  .phone-label, .phone-value {
    font-size: 8px;
  }
  .phone-chevron {
    font-size: 13px;
  }
  .phone-tabs {
    gap: 10px;
    margin: 8px 5px 0;
  }
  .phone-tabs span {
    font-size: 8px;
    padding: 7px 0 8px;
  }
  .row-status.small {
    width: 12px;
    height: 12px;
    font-size: 8px;
  }
  .phone-action-btn {
    margin: 8px 16px 0;
    height: 24px;
    border-radius: 6px;
    gap: 5px;
    font-size: 9px;
  }
  .trust-strip {
    min-height: auto;
    padding: 14px 16px;
  }
  .features-section,
  .workflow-section,
  .pricing-section,
  .site-footer {
    padding-left: 18px;
    padding-right: 18px;
  }
  .section-heading h2,
  .compact-heading h2,
  .pricing-heading h2 {
    font-size: 24px;
  }
  .section-heading p {
    font-size: 12px;
    line-height: 1.5;
  }
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .feature-card {
    grid-template-columns: 44px 1fr;
    gap: 10px;
  }
  .feature-card h3 {
    font-size: 13px;
  }
  .feature-card p {
    font-size: 11px;
  }
  .workflow-card {
    margin-top: 16px;
    padding: 16px;
    border-radius: 12px;
  }
  .workflow-step {
    grid-template-columns: 48px 1fr;
    column-gap: 10px;
  }
  .workflow-icon {
    width: 48px;
    height: 48px;
  }
  .field-section {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 20px 18px 22px;
  }
  .field-copy {
    order: 1;
    padding: 0;
  }
  .field-copy h2 {
    font-size: 28px;
    margin-bottom: 10px;
  }
  .field-copy > p {
    font-size: 12px;
    margin-bottom: 14px;
  }
  .field-copy li {
    align-items: flex-start;
    font-size: 11px;
    line-height: 1.45;
  }
  .field-phone {
    order: 2;
    width: min(100%, 260px);
    margin: 0 auto;
    justify-content: center;
  }
  .report-preview {
    order: 3;
    width: min(100%, 360px);
    margin: 0 auto;
    justify-content: center;
  }
  .pricing-section {
    padding-top: 26px;
    padding-bottom: 26px;
  }
  .pricing-grid {
    gap: 14px;
  }
  .pricing-card {
    max-width: none;
  }
  .pricing-card-inner {
    padding: 18px 16px 15px;
  }
  .pricing-card h3 {
    font-size: 22px;
  }
  .plan-subtitle,
  .enterprise-line {
    font-size: 11px;
  }
  .price-number {
    font-size: 32px;
  }
  .price-suffix,
  .plan-features li,
  .btn-plan {
    font-size: 11px;
  }
  .btn-plan {
    min-height: 40px;
  }
  .bottom-cta {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
    gap: 10px;
    padding: 24px 18px;
  }
  .cta-icon {
    width: 52px;
    height: 52px;
  }
  .cta-icon svg {
    width: 44px;
    height: 48px;
  }
  .bottom-cta-copy h2 {
    font-size: 22px;
    margin-bottom: 8px;
  }
  .bottom-cta-copy p {
    font-size: 12px;
  }
  .bottom-cta-action {
    width: 100%;
  }
  .cta-trial {
    width: 100%;
    min-width: 0;
    max-width: 360px;
    min-height: 44px;
  }
  .site-footer {
    padding-top: 22px;
    padding-bottom: 20px;
  }
  .footer-brand {
    display: flex;
    justify-content: center;
  }
  .footer-columns {
    margin-top: 20px;
    padding-left: 0;
    grid-template-columns: 1fr 1fr;
    gap: 22px 18px;
  }
  .footer-columns h3 {
    font-size: 11px;
  }
  .footer-columns a,
  .footer-columns button {
    font-size: 10px;
    margin-bottom: 7px;
  }
  .footer-bottom {
    margin-top: 16px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 9px;
  }
  .footer-bottom div {
    justify-content: center;
    flex-wrap: wrap;
  }
  .modal {
    width: calc(100vw - 20px);
    padding: 20px 16px;
    max-height: 88vh;
    border-radius: 12px;
  }
  .modal h2 {
    font-size: 22px;
  }
  .modal > p {
    font-size: 12px;
    margin-bottom: 14px;
  }
}

@media (max-width: 420px) {
  .site-header {
    padding: 0 14px;
  }
  .hero {
    padding: 28px 14px 18px;
  }
  .hero h1 {
    font-size: 29px;
  }
  .hero-lede {
    font-size: 13px;
  }
  .mockup-scene {
    min-height: 320px;
  }
  .mockup-board {
    width: calc(100% - 32px);
    min-height: 292px;
    grid-template-columns: 84px 1fr;
  }
  .mockup-brand-text {
    font-size: 10px;
  }
  .mockup-nav-item {
    font-size: 8px;
    min-height: 29px;
    padding: 0 8px;
  }
  .mockup-desktop {
    padding: 12px 10px 12px 11px;
  }
  .mockup-title {
    font-size: 13px;
  }
  .summary-cell {
    padding: 7px 6px;
  }
  .summary-label, .summary-value, .summary-subvalue {
    font-size: 7px;
  }
  .mockup-tabs span {
    font-size: 7px;
  }
  .mockup-checklist-title {
    font-size: 8px;
    padding: 8px 9px;
  }
  .mockup-row {
    min-height: 23px;
    font-size: 7px;
    padding: 0 8px;
  }
  .mockup-phone {
    right: 0;
    bottom: 2px;
  }
  .phone-shell {
    width: 128px;
    min-height: 228px;
    padding: 6px;
  }
  .phone-screen {
    min-height: 216px;
    padding: 6px 6px 8px;
  }
  .phone-title {
    font-size: 9px;
  }
  .phone-close {
    font-size: 13px;
  }
  .mockup-status-pill.mobile {
    height: 18px;
    font-size: 7px;
    margin: 0 4px 5px;
  }
  .phone-summary-card,
  .phone-list-card {
    margin: 0 4px;
  }
  .phone-summary-row {
    grid-template-columns: 28px 1fr auto;
    min-height: 19px;
    padding: 0 6px;
  }
  .phone-list-row,
  .phone-label,
  .phone-value,
  .phone-tabs span,
  .phone-action-btn {
    font-size: 7px;
  }
  .phone-list-row {
    min-height: 17px;
    padding: 0 6px;
  }
  .phone-tabs {
    gap: 8px;
    margin: 6px 4px 0;
  }
  .phone-action-btn {
    margin: 7px 12px 0;
    height: 21px;
  }
  .features-section,
  .workflow-section,
  .pricing-section,
  .site-footer {
    padding-left: 14px;
    padding-right: 14px;
  }
  .section-heading h2,
  .compact-heading h2,
  .pricing-heading h2,
  .field-copy h2,
  .bottom-cta-copy h2 {
    font-size: 21px;
  }
  .workflow-card {
    padding: 14px;
  }
  .bottom-cta {
    padding: 22px 14px;
  }
  .footer-columns {
    grid-template-columns: 1fr;
  }
}

/* InspectPro SEO content */
.seo-section {
  padding: 42px 58px 38px;
  background:
    radial-gradient(circle at 86% 12%, rgba(7,91,214,.07), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border-top: 1px solid #eef2f7;
  border-bottom: 1px solid #e9eef5;
}
.seo-heading { max-width: 760px; margin: 0 auto; }
.seo-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: #075bd6;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
}
.seo-intro-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 20px;
}
.seo-copy-card {
  padding: 25px 26px;
  border: 1px solid #e2e8f1;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(19, 42, 76, .05);
}
.seo-copy-card.accent-card {
  background: linear-gradient(145deg, #063b94 0%, #00317f 60%, #061b48 100%);
  color: #fff;
  border-color: transparent;
}
.seo-copy-card h3 {
  margin: 0 0 12px;
  font-size: 18px;
  line-height: 1.18;
  letter-spacing: -.015em;
}
.seo-copy-card p {
  margin: 0 0 12px;
  color: #566176;
  font-size: 12px;
  line-height: 1.7;
}
.seo-copy-card p:last-child { margin-bottom: 0; }
.seo-check-list { list-style: none; margin: 4px 0 0; padding: 0; display: grid; gap: 12px; }
.seo-check-list li { display: flex; gap: 10px; align-items: center; font-size: 11.5px; font-weight: 700; }
.seo-check-list li span {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  color: #07377f;
  font-size: 11px;
  font-weight: 900;
}
.seo-feature-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.seo-feature-grid article {
  min-height: 205px;
  padding: 20px 18px;
  border: 1px solid #e4e9f1;
  border-radius: 11px;
  background: #fff;
}
.seo-number {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 9px;
  background: #eef5ff;
  color: #075bd6;
  font-size: 11px;
  font-weight: 900;
}
.seo-feature-grid h3 { margin: 0 0 9px; font-size: 13px; line-height: 1.25; }
.seo-feature-grid p { margin: 0; color: #596477; font-size: 10.5px; line-height: 1.62; }
.seo-use-cases {
  margin-top: 20px;
  padding: 28px 30px;
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 28px;
  align-items: center;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(110deg, #003b9e 0%, #004dad 58%, #02245d 100%);
  overflow: hidden;
  position: relative;
}
.seo-use-cases::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -80px;
  top: -120px;
  border-radius: 50%;
  background: rgba(24, 122, 255, .25);
  filter: blur(22px);
}
.seo-use-cases > * { position: relative; z-index: 1; }
.seo-use-cases .seo-kicker { color: #a9ccff; }
.seo-use-cases h2 { margin: 0 0 10px; font-size: 24px; line-height: 1.12; letter-spacing: -.02em; }
.seo-use-cases p { margin: 0; color: rgba(255,255,255,.86); font-size: 11.5px; line-height: 1.65; }
.seo-stat-card {
  padding: 22px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 12px;
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(5px);
}
.seo-stat-card strong { display: block; margin-bottom: 8px; font-size: 18px; }
.seo-stat-card span { display: block; color: rgba(255,255,255,.8); font-size: 11px; line-height: 1.5; }
.faq-block { margin-top: 34px; }
.faq-grid {
  max-width: 870px;
  margin: 18px auto 0;
  display: grid;
  gap: 9px;
}
.faq-grid details {
  border: 1px solid #e3e8f0;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}
.faq-grid summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  padding: 15px 46px 15px 18px;
  color: #18243d;
  font-size: 11.5px;
  font-weight: 800;
}
.faq-grid summary::-webkit-details-marker { display: none; }
.faq-grid summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #075bd6;
  font-size: 19px;
  font-weight: 500;
}
.faq-grid details[open] summary::after { content: "−"; }
.faq-grid details p {
  margin: 0;
  padding: 0 18px 16px;
  color: #5b6679;
  font-size: 10.5px;
  line-height: 1.65;
}

@media (max-width: 809px) {
  .seo-section { padding: 34px 28px; }
  .seo-feature-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .seo-section { padding: 30px 18px; }
  .seo-intro-grid,
  .seo-use-cases { grid-template-columns: 1fr; }
  .seo-copy-card { padding: 20px 18px; }
  .seo-copy-card h3 { font-size: 17px; }
  .seo-copy-card p { font-size: 12px; }
  .seo-feature-grid { grid-template-columns: 1fr; gap: 10px; }
  .seo-feature-grid article { min-height: 0; padding: 18px; }
  .seo-feature-grid h3 { font-size: 14px; }
  .seo-feature-grid p { font-size: 11px; }
  .seo-use-cases { padding: 22px 20px; gap: 18px; }
  .seo-use-cases h2 { font-size: 22px; }
  .seo-use-cases p { font-size: 12px; }
  .faq-grid summary { font-size: 12px; line-height: 1.4; }
  .faq-grid details p { font-size: 11px; }
}

@media (max-width: 720px) {
  .mockup-brand { margin: 0 7px 14px; padding: 6px 5px; border-radius: 7px; }
  .mockup-brand-logo { max-width: 54px; }
}
@media (max-width: 420px) {
  .mockup-brand { margin: 0 5px 11px; padding: 5px 4px; border-radius: 6px; }
  .mockup-brand-logo { max-width: 44px; }
}

/* InspectPro brand inside the coded dashboard mockup. */
.mockup-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  align-self: center;
  margin: 0 auto 22px;
  padding: 7px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,.12);
}
.mockup-brand-logo {
  display: block;
  width: 60px;
  max-width: 60px;
  height: 60px;
  object-fit: contain;
}
@media (max-width: 720px) {
  .mockup-brand { margin: 0 7px 14px; padding: 6px 5px; border-radius: 7px; }
  .mockup-brand-logo { max-width: 54px; }
}
@media (max-width: 420px) {
  .mockup-brand { margin: 0 5px 11px; padding: 5px 4px; border-radius: 6px; }
  .mockup-brand-logo { max-width: 44px; }
}

/* Tighter square logo card inside the coded dashboard mockup. */
@media (max-width: 720px) {
  .mockup-brand { width: 58px; height: 58px; margin: 0 auto 14px; padding: 5px; border-radius: 9px; }
  .mockup-brand-logo { width: 46px; max-width: 46px; height: 46px; }
}
@media (max-width: 420px) {
  .mockup-brand { width: 48px; height: 48px; margin: 0 auto 11px; padding: 4px; border-radius: 8px; }
  .mockup-brand-logo { width: 38px; max-width: 38px; height: 38px; }
}

/* LinkoPDF landing adaptations */
.brand {
  width: auto;
  gap: 9px;
  color: #0b1f47;
  font-weight: 900;
  font-size: 19px;
  letter-spacing: -.035em;
}
.brand img { width: 34px; height: 34px; border-radius: 9px; }
.brand span { display: inline-block; }
.integration-strip {
  width: 100%;
  max-width: 900px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  gap: 18px;
  color: #8390a5;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .02em;
  text-align: center;
}
.integration-strip span { position: relative; }
.integration-strip span + span::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #c6cfdd;
}
.mockup-brand-logo { border-radius: 11px; }
.mockup-sidebar { background: linear-gradient(180deg, #0b2457 0%, #0b1a3d 100%); }
.mockup-nav-item.active { background: rgba(255,255,255,.12); }
.mockup-nav-item.active::before { background: #ffd326; }
.mockup-status-pill { background: #e7f8f0; color: #098452; }
.summary-value.accent, .phone-value.accent { color: #0a64dc; font-weight: 850; }
.field-phone img {
  max-width: 250px;
  margin-left: 26px;
  border-radius: 13px 13px 0 0;
  filter: drop-shadow(0 8px 18px rgba(13, 30, 57, .13));
}
.report-preview img {
  max-width: 470px;
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(13, 30, 57, .13);
}
.footer-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -.035em;
  color: #fff;
}
.footer-brand-link img { width: 37px; height: 37px; border-radius: 10px; }
.pricing-card .btn { text-decoration: none; }
.btn-link { text-decoration: none; }
.site-footer a:hover { opacity: .88; }

@media (max-width: 720px) {
  .site-header { grid-template-columns: 1fr auto; }
  .brand { font-size: 17px; }
  .brand img { width: 31px; height: 31px; }
  .integration-strip { grid-template-columns: repeat(3, 1fr); gap: 12px; font-size: 10px; }
  .integration-strip span + span::before { display: none; }
  .field-phone img { margin-left: 0; max-width: 210px; }
}


/* Landing Excel handoff */
.mockup-scene {
  min-height: 500px;
}
.mockup-board {
  max-width: 720px;
}
.mockup-import-panel {
  width: 100%;
  max-width: 720px;
  margin: 0 auto 12px;
  padding: 12px 16px;
  display: block;
  border: 1.5px dashed #c7d1de;
  border-radius: 12px;
  background: #f5f7fa;
  color: #203556;
  cursor: pointer;
  transition: border-color .16s ease, background .16s ease, box-shadow .16s ease, transform .16s ease;
}
.mockup-import-panel:hover,
.mockup-import-panel.is-dragover {
  border-color: #0b67df;
  background: #eef5ff;
  box-shadow: 0 0 0 3px rgba(11, 103, 223, .08);
}
.mockup-import-panel.is-loading {
  pointer-events: none;
  opacity: .82;
}
.mockup-import-panel input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.mockup-import-panel-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.mockup-import-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  color: #7f8ca1;
}
.mockup-import-icon svg {
  width: 31px;
  height: 31px;
}
.mockup-import-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
  text-align: center;
}
.mockup-import-copy strong {
  color: #596578;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: -.01em;
}
.mockup-import-copy small {
  color: #7e8b9f;
  font-size: 8.5px;
  font-weight: 600;
}
.mockup-import-divider {
  color: #8b96a8;
  font-size: 10px;
  font-weight: 700;
}
.mockup-import-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 108px;
  padding: 10px 16px;
  border: 1px solid #8fd0ff;
  border-radius: 7px;
  background: #ffffff;
  color: #46a6eb;
  font-size: 11px;
  font-weight: 800;
  box-shadow: 0 1px 0 rgba(255,255,255,.6) inset;
}
.mockup-import-status {
  width: 100%;
  max-width: 720px;
  min-height: 13px;
  margin: 0 auto 10px;
  color: #60718d;
  font-size: 8.5px;
  font-weight: 650;
  text-align: left;
}
.mockup-import-status.error { color: #c33434; }
.mockup-import-status.success { color: #148447; }
.data-file-cell {
  min-height: 92px;
}
.summary-value.file-name {
  color: #18345f;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 980px) {
  .mockup-scene { min-height: 390px; }
  .mockup-board,
  .mockup-import-panel,
  .mockup-import-status { max-width: none; }
  .mockup-import-panel { padding: 10px 12px; }
  .mockup-import-panel-inner { gap: 10px; }
  .mockup-import-icon { width: 36px; height: 36px; flex-basis: 36px; }
  .mockup-import-icon svg { width: 26px; height: 26px; }
  .mockup-import-copy strong { font-size: 10px; }
  .mockup-import-copy small,
  .mockup-import-status,
  .mockup-import-divider { font-size: 8px; }
  .mockup-import-button { min-width: 98px; padding: 9px 14px; font-size: 10px; }
  .data-file-cell { min-height: 84px; }
}

@media (max-width: 680px) {
  .mockup-scene { min-height: 0; }
  .mockup-import-panel {
    padding: 12px 10px;
    border-radius: 10px;
  }
  .mockup-import-panel-inner {
    flex-direction: column;
    gap: 7px;
  }
  .mockup-import-icon { width: 30px; height: 30px; flex-basis: 30px; }
  .mockup-import-icon svg { width: 22px; height: 22px; }
  .mockup-import-copy strong { font-size: 9px; }
  .mockup-import-copy small,
  .mockup-import-status,
  .mockup-import-divider { font-size: 7px; }
  .mockup-import-button { min-width: 92px; padding: 8px 12px; font-size: 9px; }
  .data-file-cell { min-height: 76px; }
}


/* === LinkoPDF full-width hero correction === */
.site {
  width: 100%;
  max-width: none;
  margin: 0;
  transform: none !important;
  box-shadow: none;
}
@media (min-width: 981px) {
  .site {
    width: 100%;
    max-width: none;
    transform: none !important;
  }
}

/* Keep the same top-bar structure; only let it use the viewport width. */
.site-header {
  width: 100%;
  padding-left: clamp(28px, 3.8vw, 72px);
  padding-right: clamp(28px, 3.8vw, 72px);
}

.hero.hero-wide {
  width: 100%;
  margin: 0;
  min-height: auto;
  padding: clamp(42px, 4vw, 68px) clamp(28px, 3.4vw, 56px) clamp(40px, 3.5vw, 60px);
  grid-template-columns: minmax(420px, 560px) minmax(620px, 900px);
  justify-content: center;
  gap: clamp(18px, 1.4vw, 26px);
  align-items: start;
}
.hero-flow-copy {
  width: 100%;
  max-width: 580px;
  align-self: start;
}
.hero-flow-kicker {
  margin: 0 0 16px;
  color: #ffd236;
  font-size: clamp(12px, .95vw, 15px);
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.hero.hero-wide .hero-flow-title {
  margin: 0;
  color: #fff;
  font-size: clamp(46px, 3.9vw, 68px);
  line-height: .98;
  letter-spacing: -.045em;
  font-weight: 860;
}
.hero.hero-wide .hero-flow-lede {
  max-width: 560px;
  margin: 20px 0 18px;
  color: rgba(255,255,255,.96);
  font-size: clamp(16px, 1.1vw, 20px);
  line-height: 1.48;
  font-weight: 520;
}

.hero-flow-upload-card {
  width: 100%;
  max-width: 520px;
  margin: 0 0 14px;
}
.hero-flow-upload-badge {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  height: 28px;
  margin: 0 0 -14px 18px;
  padding: 0 12px;
  border-radius: 999px;
  background: #edf3ff;
  color: #1764e8;
  font-size: 11px;
  font-weight: 850;
}
.hero-flow-upload-drop {
  position: relative;
  min-height: 164px;
  padding: 26px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  border: 2px solid #fff;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(0,22,78,.18);
  cursor: pointer;
}
.hero-flow-upload-drop::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 2px dashed #2470ef;
  border-radius: 13px;
  pointer-events: none;
}
.hero-flow-upload-drop:hover::after,
.hero-flow-upload-drop.is-dragover::after {
  border-color: #0b57dd;
}
.hero-flow-upload-drop input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.hero-flow-upload-icon,
.hero-flow-upload-drop strong,
.hero-flow-upload-button,
.hero-flow-upload-meta {
  position: relative;
  z-index: 2;
}
.hero-flow-upload-icon {
  display: grid;
  place-items: center;
  color: #1764e8;
}
.hero-flow-upload-icon svg {
  display: block;
  width: 44px;
  height: 44px;
}
.hero-flow-upload-drop strong {
  color: #14285c;
  font-size: clamp(15px, 1vw, 18px);
  font-weight: 820;
  text-align: center;
  line-height: 1.25;
}
.hero-flow-upload-button {
  min-width: 200px;
  min-height: 44px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 9px;
  color: #fff;
  background: linear-gradient(180deg, #176cf3 0%, #0758de 100%);
  box-shadow: 0 8px 18px rgba(7,88,222,.22);
  font-size: 14px;
  font-weight: 820;
}
.hero-flow-upload-button svg {
  width: 17px;
  height: 17px;
}
.hero-flow-upload-meta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #75829a;
  font-size: 10px;
  font-weight: 650;
}
.hero-flow-upload-status {
  min-height: 14px;
  margin: 6px 0 0 10px;
  color: rgba(255,255,255,.92);
  font-size: 10px;
  font-weight: 650;
}
.hero-flow-upload-status.success { color: #d9ffea; }
.hero-flow-upload-status.error { color: #ffe0e0; }

.hero-flow-steps {
  max-width: 520px;
  margin: 10px 0 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
}
.hero-flow-step {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-flow-step span {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(255,255,255,.92);
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}
.hero-flow-step strong {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.hero-flow-step-line {
  min-width: 16px;
  flex: 1 1 22px;
  border-top: 1.5px dashed rgba(255,255,255,.5);
}
.hero-flow-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.hero-flow-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: clamp(13px, .95vw, 16px);
  font-weight: 740;
}
.hero-flow-list li > span {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffcd18;
  color: #0758cf;
  font-size: 13px;
  font-weight: 900;
}

.hero.hero-wide .hero-visual {
  min-width: 0;
  align-self: start;
  justify-content: flex-start;
  transform: translateX(clamp(8px, 1.2vw, 22px));
}
.hero.hero-wide .mockup-scene {
  width: 100%;
  max-width: 930px;
  min-height: 0;
  display: block;
}
.hero.hero-wide .mockup-board {
  width: 100%;
  min-height: 650px;
  grid-template-columns: 165px minmax(0, 1fr);
  border-radius: 22px;
}
.hero.hero-wide .mockup-desktop {
  min-width: 0;
}

@media (max-width: 1280px) {
  .hero.hero-wide {
    width: 100%;
    grid-template-columns: minmax(360px, 500px) minmax(540px, 760px);
    justify-content: center;
    gap: 22px;
    padding: 38px 30px 36px;
  }
  .hero.hero-wide .hero-flow-title { font-size: 50px; }
  .hero.hero-wide .mockup-board { min-height: 500px; grid-template-columns: 145px minmax(0, 1fr); }
}

@media (max-width: 980px) {
  .site-header {
    padding-left: 20px;
    padding-right: 20px;
  }
  .hero.hero-wide {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 36px 22px 34px;
  }
  .hero-flow-copy { max-width: 720px; }
  .hero.hero-wide .hero-flow-title { font-size: clamp(42px, 8vw, 58px); }
  .hero.hero-wide .hero-visual { justify-content: center; }
  .hero.hero-wide .mockup-scene { max-width: 760px; }
}

@media (max-width: 640px) {
  .hero.hero-wide {
    padding: 30px 16px 28px;
  }
  .hero-flow-kicker {
    margin-bottom: 12px;
    font-size: 10px;
    letter-spacing: .11em;
  }
  .hero.hero-wide .hero-flow-title {
    font-size: 38px;
    line-height: 1;
  }
  .hero.hero-wide .hero-flow-lede {
    margin: 16px 0 18px;
    font-size: 15px;
  }
  .hero-flow-upload-drop {
    min-height: 154px;
    padding: 26px 14px 16px;
  }
  .hero-flow-upload-icon svg { width: 40px; height: 40px; }
  .hero-flow-upload-drop strong { font-size: 14px; }
  .hero-flow-upload-button { min-width: 180px; min-height: 42px; }
  .hero-flow-upload-meta { font-size: 9px; text-align: center; flex-wrap: wrap; justify-content: center; }
  .hero-flow-steps {
    gap: 6px;
    margin-top: 10px;
  }
  .hero-flow-step { gap: 5px; }
  .hero-flow-step span { width: 24px; height: 24px; flex-basis: 24px; font-size: 11px; }
  .hero-flow-step strong { font-size: 9px; }
  .hero-flow-step-line { min-width: 10px; }
  .hero-flow-list li { font-size: 13px; }
  .hero.hero-wide .mockup-board {
    min-height: 410px;
    grid-template-columns: 104px minmax(0, 1fr);
  }
}


/* Landing mockup: canvas + fields tray */
.mockup-builder-desktop {
  padding: 14px 14px 14px 16px !important;
  display: flex !important;
  flex-direction: column !important;
  background: #f8fafc !important;
  min-width: 0 !important;
}
.mockup-builder-header {
  min-height: 44px !important;
  margin: 0 0 10px !important;
  display: flex !important;
  align-items: flex-start !important;
  justify-content: space-between !important;
  gap: 12px !important;
}
.mockup-builder-header .mockup-title {
  margin: 0 0 2px !important;
  color: #0f1f3d !important;
  font-size: 18px !important;
  line-height: 1.1 !important;
  font-weight: 850 !important;
}
.mockup-builder-subtitle {
  color: #718097 !important;
  font-size: 9px !important;
  font-weight: 650 !important;
}
.mockup-builder-header .mockup-status-pill {
  margin: 0 !important;
  height: 26px !important;
  padding: 0 9px !important;
  font-size: 9px !important;
}

.mockup-builder-workspace {
  min-height: 360px !important;
  flex: 1 1 auto !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 215px !important;
  overflow: hidden !important;
  border: 1px solid #dce3ed !important;
  border-radius: 10px !important;
  background: #fff !important;
  box-shadow: 0 8px 18px rgba(18,42,78,.06) !important;
}

.mockup-canvas-stage {
  min-width: 0 !important;
  min-height: 0 !important;
  position: relative !important;
  padding: 18px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
  border-right: 1px solid #dfe6ef !important;
  background-color: #e5ebf2 !important;
  background-image: radial-gradient(circle, rgba(92,112,138,.34) 1px, transparent 1px) !important;
  background-size: 14px 14px !important;
}
.mockup-canvas-page {
  width: min(84%, 410px) !important;
  height: 91% !important;
  min-height: 300px !important;
  position: relative !important;
  border: 1.5px solid #2e73e8 !important;
  border-radius: 1px !important;
  background: #fff !important;
  box-shadow: 0 8px 20px rgba(30,48,75,.15) !important;
}
.mockup-canvas-toolbar {
  position: absolute !important;
  z-index: 3 !important;
  top: 10px !important;
  right: 12px !important;
  height: 30px !important;
  padding: 0 7px !important;
  display: flex !important;
  align-items: center !important;
  gap: 3px !important;
  border: 1px solid #dce3ed !important;
  border-radius: 7px !important;
  background: rgba(255,255,255,.96) !important;
  box-shadow: 0 4px 12px rgba(32,52,82,.10) !important;
}
.mockup-canvas-toolbar span {
  width: 23px !important;
  height: 23px !important;
  display: grid !important;
  place-items: center !important;
  border-radius: 4px !important;
  color: #6f7f96 !important;
  font-size: 11px !important;
  font-weight: 800 !important;
}
.mockup-canvas-selected-field {
  position: absolute !important;
  top: 82px !important;
  right: 44px !important;
  min-width: 110px !important;
  height: 28px !important;
  padding: 0 9px !important;
  display: flex !important;
  align-items: center !important;
  border: 1.5px dashed #2d76e8 !important;
  border-radius: 4px !important;
  background: #eef5ff !important;
  color: #1761c9 !important;
  font-size: 8px !important;
  font-weight: 750 !important;
}

.mockup-fields-panel {
  min-width: 0 !important;
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  background: #f8fafc !important;
}
.mockup-fields-heading {
  min-height: 62px !important;
  padding: 13px 13px 10px !important;
  display: grid !important;
  align-content: center !important;
  gap: 4px !important;
  border-bottom: 1px solid #e2e8f0 !important;
  background: #fff !important;
}
.mockup-fields-heading strong {
  color: #506078 !important;
  font-size: 10px !important;
  font-weight: 900 !important;
  letter-spacing: .09em !important;
}
.mockup-fields-heading span {
  color: #6f7e93 !important;
  font-size: 8px !important;
  line-height: 1.25 !important;
  font-weight: 600 !important;
}
.mockup-field-list {
  padding: 10px 12px 12px !important;
  display: grid !important;
  gap: 7px !important;
  overflow: hidden !important;
}
.mockup-field-chip {
  min-height: 38px !important;
  padding: 0 9px !important;
  display: grid !important;
  grid-template-columns: 16px minmax(0,1fr) !important;
  align-items: center !important;
  gap: 7px !important;
  border: 1px solid #d9e2ed !important;
  border-radius: 8px !important;
  background: #fff !important;
  color: #1f2f49 !important;
  box-shadow: 0 1px 2px rgba(26,45,75,.03) !important;
  font-size: 9px !important;
  font-weight: 750 !important;
  cursor: grab !important;
}
.mockup-field-chip:first-child {
  border-color: #a8c7f5 !important;
  background: #f5f9ff !important;
}
.field-grip {
  color: #7890af !important;
  font-size: 14px !important;
  line-height: 1 !important;
}
.mockup-fields-scrollbar {
  position: absolute !important;
  right: 5px !important;
  top: 73px !important;
  bottom: 12px !important;
  width: 5px !important;
  border-radius: 99px !important;
  background: #e5eaf1 !important;
}
.mockup-fields-scrollbar span {
  display: block !important;
  width: 100% !important;
  height: 72px !important;
  border-radius: 99px !important;
  background: #c8d3e0 !important;
}

@media (max-width: 1280px) {
  .mockup-builder-workspace { grid-template-columns: minmax(0, 1fr) 168px !important; min-height: 415px !important; }
  .mockup-canvas-page { width: min(88%, 320px) !important; min-height: 350px !important; }
  .mockup-field-chip { min-height: 35px !important; font-size: 8px !important; }
}

@media (max-width: 640px) {
  .mockup-builder-desktop { padding: 10px !important; }
  .mockup-builder-header { margin-bottom: 7px !important; }
  .mockup-builder-workspace { grid-template-columns: minmax(0,1fr) 118px !important; min-height: 340px !important; }
  .mockup-canvas-stage { padding: 10px !important; background-size: 10px 10px !important; }
  .mockup-canvas-page { width: 92% !important; height: 90% !important; min-height: 285px !important; }
  .mockup-canvas-toolbar { top: 6px !important; right: 6px !important; transform: scale(.8); transform-origin: top right; }
  .mockup-canvas-selected-field { top: 58px !important; right: 18px !important; min-width: 72px !important; height: 22px !important; font-size: 6px !important; }
  .mockup-fields-heading { min-height: 48px !important; padding: 8px 7px !important; }
  .mockup-fields-heading strong { font-size: 8px !important; }
  .mockup-fields-heading span { font-size: 6px !important; }
  .mockup-field-list { padding: 6px !important; gap: 5px !important; }
  .mockup-field-chip { min-height: 28px !important; padding: 0 5px !important; grid-template-columns: 11px minmax(0,1fr) !important; gap: 4px !important; font-size: 6px !important; border-radius: 5px !important; }
  .field-grip { font-size: 9px !important; }
  .mockup-fields-scrollbar { display: none !important; }
}


/* Spreadsheet preview inside the landing mockup */
.mockup-data-table-wrap {
  margin-top: 10px;
  overflow: hidden;
  border: 1px solid #dce3ed;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(18,42,78,.04);
}
.mockup-data-table-title {
  min-height: 34px;
  padding: 0 11px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid #e6ebf2;
  background: #f8fafc;
}
.mockup-data-table-title strong {
  color: #1a2d49;
  font-size: 9px;
  font-weight: 850;
}
.mockup-data-table-title span {
  color: #7d899b;
  font-size: 7px;
  font-weight: 650;
}
.mockup-data-table-scroll {
  overflow: hidden;
}
.mockup-data-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.mockup-data-table th,
.mockup-data-table td {
  padding: 6px 7px;
  border-right: 1px solid #e8edf4;
  border-bottom: 1px solid #edf1f6;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: left;
}
.mockup-data-table th:last-child,
.mockup-data-table td:last-child { border-right: 0; }
.mockup-data-table tbody tr:last-child td { border-bottom: 0; }
.mockup-data-table th {
  background: #f2f6fb;
  color: #41526b;
  font-size: 6.6px;
  font-weight: 850;
}
.mockup-data-table td {
  color: #263852;
  font-size: 6.4px;
  font-weight: 580;
}
.mockup-data-table th:nth-child(1), .mockup-data-table td:nth-child(1) { width: 16%; }
.mockup-data-table th:nth-child(2), .mockup-data-table td:nth-child(2) { width: 11%; }
.mockup-data-table th:nth-child(3), .mockup-data-table td:nth-child(3) { width: 12%; }
.mockup-data-table th:nth-child(4), .mockup-data-table td:nth-child(4) { width: 18%; }
.mockup-data-table th:nth-child(5), .mockup-data-table td:nth-child(5) { width: 20%; }
.mockup-data-table th:nth-child(6), .mockup-data-table td:nth-child(6) { width: 11%; }
.mockup-data-table th:nth-child(7), .mockup-data-table td:nth-child(7) { width: 12%; }

@media (max-width: 1280px) {
  .mockup-builder-workspace { min-height: 330px !important; grid-template-columns: minmax(0, 1fr) 188px !important; }
  .mockup-canvas-page { width: min(86%, 360px) !important; min-height: 275px !important; }
  .mockup-data-table th { font-size: 6px; }
  .mockup-data-table td { font-size: 5.8px; }
}

@media (max-width: 980px) {
  .hero.hero-wide .hero-visual { transform: none; }
}

@media (max-width: 640px) {
  .mockup-data-table-wrap { margin-top: 7px; }
  .mockup-data-table-title { min-height: 26px; padding: 0 7px; }
  .mockup-data-table-title strong { font-size: 7px; }
  .mockup-data-table-title span { font-size: 5.5px; }
  .mockup-data-table th,
  .mockup-data-table td { padding: 4px 4px; }
  .mockup-data-table th { font-size: 4.7px; }
  .mockup-data-table td { font-size: 4.5px; }
}


/* === Restore contained layout below the hero === */
.trust-strip,
.features-section,
.workflow-section,
.field-section,
.seo-section,
.pricing-section,
.bottom-cta,
.site-footer {
  width: min(100%, var(--site-max));
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 981px) {
  .trust-strip,
  .features-section,
  .workflow-section,
  .field-section,
  .seo-section,
  .pricing-section,
  .bottom-cta,
  .site-footer {
    width: min(100%, 1180px);
  }
}
