:root {
  --navy-950: #061225;
  --navy-900: #071a35;
  --navy-850: #082244;
  --navy-800: #0b2d57;
  --blue-600: #2268ff;
  --blue-500: #2d7cff;
  --green-500: #8bd84f;
  --green-600: #6fc43c;
  --purple-500: #7a5cff;
  --orange-500: #ff9a28;
  --ink: #0c1830;
  --muted: #5d6c84;
  --muted-2: #8a96aa;
  --line: #dfe6ef;
  --soft: #f4f8fc;
  --soft-blue: #edf5ff;
  --white: #ffffff;
  --shadow-sm: 0 10px 30px rgba(6, 18, 37, 0.08);
  --shadow-md: 0 24px 70px rgba(6, 18, 37, 0.16);
  --shadow-dark: 0 28px 90px rgba(0, 0, 0, 0.28);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --max-width: 1180px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}


[id] {
  scroll-margin-top: 92px;
}

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

body.nav-open {
  overflow: hidden;
}

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

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

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

button {
  border: 0;
}

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

.narrow {
  width: min(100% - 40px, 860px);
}

.hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-height);
  color: var(--white);
  background: rgba(6, 18, 37, 0.72);
  backdrop-filter: blur(16px);
  transition: background 0.2s ease, box-shadow 0.2s ease, height 0.2s ease;
}

.site-header.is-scrolled {
  height: 68px;
  background: rgba(6, 18, 37, 0.94);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-mark {
  width: 30px;
  height: 30px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 720;
}

.main-nav a:not(.nav-cta) {
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.18s ease;
}

.main-nav a:not(.nav-cta):hover,
.main-nav a:not(.nav-cta):focus-visible {
  color: var(--white);
}

.nav-cta {
  padding: 13px 20px;
  border-radius: 10px;
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--green-500), #79d343);
  box-shadow: 0 12px 30px rgba(139, 216, 79, 0.24);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 10px;
  background: var(--white);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 82% 20%, rgba(45, 124, 255, 0.27), transparent 35%),
    radial-gradient(circle at 30% 5%, rgba(139, 216, 79, 0.15), transparent 25%),
    linear-gradient(135deg, #061225 0%, #071f42 52%, #05152b 100%);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  padding: calc(var(--header-height) + 88px) 0 72px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 90%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  gap: 56px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-500);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(48px, 7vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.07em;
}

.hero h1 span {
  display: block;
  color: var(--green-500);
}

.hero-lede {
  max-width: 610px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 16px 24px;
  border-radius: 12px;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

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

.btn-primary {
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--green-500), #73cf3e);
  box-shadow: 0 18px 44px rgba(139, 216, 79, 0.26);
}

.btn-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.03);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.86);
}

.btn-full {
  width: 100%;
}

.play-dot {
  width: 20px;
  height: 20px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  position: relative;
}

.play-dot::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-36%, -50%);
  border-left: 6px solid var(--white);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}

.benefit-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 44px;
}

.benefit-row div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.benefit-row p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
}

.mini-icon {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  flex: 0 0 auto;
  color: var(--green-500);
  border: 1px solid rgba(139, 216, 79, 0.5);
  border-radius: 10px;
}

.hero-visual {
  position: relative;
  min-height: 460px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  right: 52px;
  top: 56px;
  width: 310px;
  height: 300px;
  border: 2px dashed rgba(139, 216, 79, 0.72);
  border-radius: 28px;
  opacity: 0.9;
}

.floating-card {
  box-shadow: var(--shadow-dark);
}

.dashboard-card {
  position: relative;
  display: grid;
  grid-template-columns: 142px minmax(0, 1fr);
  width: min(620px, 100%);
  min-height: 380px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--ink);
}

.dashboard-sidebar {
  padding: 22px 18px;
  border-right: 1px solid #e7edf5;
  background: #fbfdff;
}

.sidebar-title {
  margin: 0 0 22px;
  font-size: 12px;
  font-weight: 800;
  color: var(--ink);
}

.dashboard-sidebar span {
  display: block;
  padding: 10px 11px;
  margin-bottom: 6px;
  border-radius: 9px;
  color: #65748a;
  font-size: 12px;
  font-weight: 700;
}

.dashboard-sidebar .active {
  color: var(--white);
  background: var(--navy-900);
}

.dashboard-main {
  padding: 34px 34px 28px;
}

.dashboard-kicker {
  margin: 0 0 24px;
  font-size: 17px;
  font-weight: 850;
}

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

.metric-card {
  padding: 16px 14px;
  border: 1px solid #e9eef5;
  border-radius: 14px;
  background: #ffffff;
}

.metric-card span,
.metric-card small {
  display: block;
  color: #7d8ba1;
  font-size: 10px;
  font-weight: 700;
}

.metric-card strong {
  display: block;
  margin: 5px 0 4px;
  color: var(--navy-950);
  font-size: 27px;
  line-height: 1;
}

.metric-card small {
  color: #25ad62;
}

.activity-panel {
  margin-top: 24px;
  padding: 18px;
  border: 1px solid #e9eef5;
  border-radius: 16px;
  background: #ffffff;
}

.panel-header,
.activity-line {
  display: flex;
  align-items: center;
}

.panel-header {
  justify-content: space-between;
  margin-bottom: 13px;
}

.panel-header span {
  padding: 4px 8px;
  border-radius: 999px;
  color: #0b7a3c;
  background: #e8f9ef;
  font-size: 10px;
  font-weight: 850;
}

.activity-line {
  gap: 10px;
  min-height: 38px;
  border-top: 1px solid #f1f4f8;
}

.activity-line:first-of-type {
  border-top: 0;
}

.activity-line p {
  flex: 1;
  margin: 0;
  font-size: 12px;
  font-weight: 750;
  color: #28374f;
}

.activity-line small {
  color: #8d98aa;
  font-size: 10px;
  font-weight: 700;
}

.activity-icon {
  width: 13px;
  height: 13px;
  border-radius: 4px;
  background: var(--green-500);
}

.activity-icon.blue {
  background: var(--blue-500);
}

.activity-icon.purple {
  background: var(--purple-500);
}

.activity-icon.orange {
  background: var(--orange-500);
}

.automation-card {
  position: absolute;
  right: 0;
  top: 86px;
  width: 200px;
  padding: 21px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.98);
}

.automation-card p {
  margin: 0 0 15px;
  font-weight: 850;
  font-size: 13px;
}

.automation-card ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

.automation-card li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 0;
  color: #33435c;
  font-size: 11px;
  font-weight: 760;
}

.automation-card li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 8px;
  bottom: -4px;
  height: 9px;
  border-left: 1px dashed #c4cedd;
}

.automation-card li span {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  border-radius: 6px;
  background: linear-gradient(135deg, #e8f9ef, #d4f4e1);
  border: 1px solid #bfeaca;
}

.industry-strip {
  padding: 28px 0 36px;
  border-bottom: 1px solid var(--line);
  background: #fbfdff;
}

.industry-strip p {
  margin: 0 0 20px;
  color: #7b8798;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  align-items: center;
}

.industry-grid span {
  display: grid;
  min-height: 46px;
  place-items: center;
  padding: 10px 12px;
  color: #4f5e75;
  border: 1px solid #e6ecf4;
  border-radius: 14px;
  background: var(--white);
  font-weight: 820;
  font-size: 13px;
}

.section {
  padding: 90px 0;
}

.section-soft {
  background:
    radial-gradient(circle at 8% 10%, rgba(45, 124, 255, 0.08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f5f9fd 100%);
}

.section-white {
  background: var(--white);
}

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

.section-heading h2,
.split-heading h2,
.contact-copy h2 {
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(32px, 4.2vw, 50px);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.section-heading p:not(.eyebrow),
.split-heading p,
.contact-copy p {
  margin: 17px auto 0;
  color: var(--muted);
  font-size: 17px;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.solution-card,
.value-card,
.case-card,
.process-card,
.faq-list details,
.audit-form {
  border: 1px solid #e4ebf4;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-sm);
}

.solution-card {
  min-height: 250px;
  padding: 28px;
  border-radius: 20px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.solution-card:hover {
  transform: translateY(-6px);
  border-color: #cfe0f3;
  box-shadow: var(--shadow-md);
}

.card-icon,
.value-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  border-radius: 16px;
  font-size: 24px;
  font-weight: 900;
}

.green {
  color: #179854;
  background: #e9f9ef;
}

.blue {
  color: #1d65e8;
  background: #eaf2ff;
}

.purple {
  color: #6f52f1;
  background: #f0edff;
}

.orange {
  color: #dd7200;
  background: #fff2e1;
}

.solution-card h3,
.value-card h3,
.process-card h3,
.case-card h3 {
  margin: 0 0 12px;
  color: var(--navy-950);
  font-size: 19px;
  line-height: 1.16;
  letter-spacing: -0.03em;
}

.solution-card p,
.value-card p,
.process-card p,
.case-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.solution-card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  color: var(--blue-600);
  font-size: 14px;
  font-weight: 850;
}

.starter-workflows {
  position: relative;
  margin-top: 36px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid #dbe6f2;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 252, 0.92)),
    #ffffff;
  box-shadow: 0 18px 50px rgba(6, 18, 37, 0.1);
}

.starter-workflows p {
  position: relative;
  margin: 0 0 18px;
  color: var(--navy-950);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.starter-button-row {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.starter-button {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 22px;
  gap: 12px;
  align-items: center;
  min-height: 118px;
  padding: 18px 16px;
  overflow: hidden;
  border: 1px solid #dbe6f2;
  border-radius: 16px;
  color: var(--navy-950);
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(6, 18, 37, 0.06);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.starter-button:hover,
.starter-button:focus-visible {
  transform: translateY(-4px);
  border-color: #bfd0e4;
  box-shadow: 0 18px 42px rgba(6, 18, 37, 0.14);
}

.starter-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: currentColor;
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}

.starter-copy {
  min-width: 0;
}

.starter-copy strong,
.starter-copy small {
  display: block;
}

.starter-copy strong {
  color: var(--navy-950);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.starter-copy small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.starter-arrow {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  color: currentColor;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 0 0 1px rgba(12, 24, 48, 0.08);
  font-size: 14px;
  font-weight: 900;
}

.starter-button.green {
  color: #179854;
}

.starter-button.blue {
  color: #1d65e8;
}

.starter-button.purple {
  color: #6f52f1;
}

.starter-button.orange {
  color: #dd7200;
}

.workflow-section {
  overflow: hidden;
  background: linear-gradient(180deg, #f6faff 0%, #ffffff 100%);
}

.workflow-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(130px, 1fr));
  gap: 18px;
  align-items: start;
  overflow-x: auto;
  padding: 12px 0 18px;
}

.workflow-line::before {
  content: "";
  position: absolute;
  top: 51px;
  left: 70px;
  right: 70px;
  border-top: 2px dashed #bdcbe0;
  pointer-events: none;
}

.workflow-step {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 16px;
  min-width: 130px;
  text-align: center;
}

.workflow-step span {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border-radius: 22px;
  color: var(--blue-600);
  background: var(--white);
  border: 1px solid #e3ecf8;
  box-shadow: var(--shadow-sm);
  font-size: 17px;
  font-weight: 900;
}

.workflow-step strong {
  max-width: 150px;
  color: var(--navy-950);
  font-size: 14px;
  line-height: 1.25;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border: 1px solid #e4ebf4;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.value-card {
  min-height: 250px;
  padding: 32px 24px;
  border: 0;
  border-right: 1px solid #e4ebf4;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}

.value-card:last-child {
  border-right: 0;
}

.value-icon {
  margin: 0 auto 20px;
}

.process-section {
  background:
    radial-gradient(circle at 88% 8%, rgba(139, 216, 79, 0.12), transparent 28%),
    #ffffff;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.process-card {
  position: relative;
  min-height: 220px;
  padding: 28px 24px;
  border-radius: 20px;
}

.process-card:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -16px;
  top: 48px;
  z-index: 2;
  color: #8da0b9;
  font-size: 25px;
  font-weight: 800;
}

.process-number {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 24px;
  border-radius: 999px;
  color: var(--white);
  background: var(--green-600);
  font-weight: 900;
}

.process-card:nth-child(2) .process-number {
  background: var(--blue-600);
}

.process-card:nth-child(3) .process-number {
  background: var(--purple-500);
}

.process-card:nth-child(4) .process-number {
  background: var(--orange-500);
}

.process-card:nth-child(5) .process-number {
  background: #22bd70;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.7fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 36px;
}

.split-heading p {
  margin: 0;
}

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

.case-card {
  padding: 30px;
  border-radius: 22px;
}

.case-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.case-card li {
  padding: 8px 11px;
  border: 1px solid #e3ebf6;
  border-radius: 999px;
  color: #50617a;
  background: #fbfdff;
  font-size: 12px;
  font-weight: 800;
}

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

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  border-radius: 18px;
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  padding: 22px 24px;
  color: var(--navy-950);
  font-weight: 850;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--blue-600);
  font-size: 22px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
}

.contact-section {
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 5%, rgba(139, 216, 79, 0.15), transparent 35%),
    radial-gradient(circle at 90% 30%, rgba(45, 124, 255, 0.22), transparent 34%);
  pointer-events: none;
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1fr);
  gap: 58px;
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 112px;
}

.contact-copy h2,
.contact-copy p {
  color: var(--white);
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.78);
  margin-left: 0;
}

.contact-note {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.contact-note strong {
  flex-basis: 100%;
  color: rgba(255, 255, 255, 0.92);
}

.contact-note span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.07);
  font-size: 13px;
  font-weight: 760;
}

.audit-form {
  padding: 28px;
  border-color: rgba(255, 255, 255, 0.17);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-dark);
}

.audit-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  color: #25344b;
  font-size: 13px;
  font-weight: 820;
}

.form-row.two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d9e3ef;
  border-radius: 12px;
  background: #fbfdff;
  color: var(--navy-950);
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

input,
select {
  height: 48px;
  padding: 0 14px;
}

textarea {
  resize: vertical;
  padding: 13px 14px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue-500);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(45, 124, 255, 0.12);
}

.form-footnote {
  margin: 14px 0 0;
  color: #7e8aa0;
  font-size: 12px;
  text-align: center;
}

.site-footer {
  padding: 58px 0 26px;
  color: rgba(255, 255, 255, 0.76);
  background: var(--navy-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 40px;
}

.footer-brand {
  color: var(--white);
}

.site-footer p {
  max-width: 300px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
}

.site-footer strong {
  display: block;
  margin-bottom: 16px;
  color: var(--white);
  font-size: 14px;
}

.site-footer a:not(.brand) {
  display: block;
  margin: 10px 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  transition: color 0.18s ease;
}

.site-footer a:not(.brand):hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
}

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

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

.reveal-delay-1 {
  transition-delay: 0.08s;
}

.reveal-delay-2 {
  transition-delay: 0.16s;
}

.reveal-delay-3 {
  transition-delay: 0.24s;
}

.reveal-delay-4 {
  transition-delay: 0.32s;
}

@media (max-width: 1100px) {
  .hero-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    width: min(720px, 100%);
    margin-inline: auto;
  }

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

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

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

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

  .value-card:nth-child(2n) {
    border-right: 0;
  }

  .value-card:nth-child(n + 3) {
    border-top: 1px solid #e4ebf4;
  }

  .process-card:not(:last-child)::after {
    display: none;
  }

  .contact-copy {
    position: static;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 20px;
    right: 20px;
    display: grid;
    gap: 0;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: rgba(6, 18, 37, 0.98);
    box-shadow: var(--shadow-dark);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  }

  .nav-open .main-nav {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .main-nav a {
    padding: 15px 14px;
    border-radius: 12px;
  }

  .main-nav a:hover {
    background: rgba(255, 255, 255, 0.08);
  }

  .nav-cta {
    display: flex;
    justify-content: center;
    margin-top: 8px;
  }

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

  .split-heading {
    grid-template-columns: 1fr;
  }

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

  .dashboard-sidebar {
    display: none;
  }

  .automation-card {
    right: 18px;
    top: 240px;
  }
}

@media (max-width: 700px) {
  :root {
    --header-height: 68px;
  }

  .container,
  .narrow {
    width: min(100% - 28px, var(--max-width));
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 56px);
  }

  .hero h1 {
    font-size: clamp(44px, 13vw, 62px);
  }

  .hero-lede {
    font-size: 16px;
  }

  .benefit-row,
  .solution-grid,
  .starter-button-row,
  .value-grid,
  .process-grid,
  .case-grid,
  .industry-grid,
  .form-row.two-col,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .value-card,
  .value-card:nth-child(2n),
  .value-card:nth-child(n + 3) {
    border-right: 0;
    border-top: 1px solid #e4ebf4;
  }

  .value-card:first-child {
    border-top: 0;
  }

  .section {
    padding: 70px 0;
  }

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

  .hero-visual {
    min-height: 520px;
    margin-top: 24px;
  }

  .dashboard-main {
    padding: 24px 20px;
  }

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

  .automation-card {
    top: auto;
    right: 0;
    left: 0;
    bottom: 0;
    width: auto;
  }

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

  .workflow-line::before {
    display: none;
  }

  .workflow-line {
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .workflow-step {
    grid-template-columns: 78px 1fr;
    justify-items: start;
    text-align: left;
  }

  .workflow-step strong {
    max-width: none;
  }

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

.thank-you-wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 60px 0;
}

.thank-you-card {
  max-width: 760px;
  padding: 48px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-dark);
}

.thank-you-card h1 {
  margin: 42px 0 0;
  color: var(--white);
  font-size: clamp(38px, 7vw, 70px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.thank-you-card p {
  max-width: 620px;
  margin: 22px 0 34px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

@media (max-width: 700px) {
  .thank-you-card {
    padding: 30px;
  }
}
