:root {
  --navy: #0d1b2e;
  --navy-2: #132944;
  --cobalt: #1a56db;
  --cyan: #38bdf8;
  --ice: #eaf2fb;
  --ice-2: #f4f8fc;
  --ink: #101d31;
  --muted: #556274;
  --line: #d7e2ee;
  --white: #ffffff;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
  --shadow: 0 14px 36px rgba(13, 27, 46, 0.09);
}

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

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

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  cursor: pointer;
}

img {
  display: block;
  height: auto;
  max-width: 100%;
}

svg {
  display: block;
}

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

h1,
h2,
.display {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0;
}

h1 {
  font-size: 64px;
  line-height: 0.98;
}

h2 {
  font-size: 50px;
  line-height: 1.02;
}

h3 {
  font-size: 26px;
  line-height: 1.2;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 200;
  padding: 10px 16px;
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--cobalt);
  transition: top 0.2s ease;
}

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

.shell {
  width: min(1200px, calc(100% - 48px));
  margin-inline: auto;
}

.narrow {
  width: min(820px, calc(100% - 48px));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--cobalt);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 3px;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.eyebrow.cyan {
  color: var(--cyan);
}

.accent {
  color: var(--cobalt);
}

.accent-cyan {
  color: var(--cyan);
}

.muted {
  color: var(--muted);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.2;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease,
    border-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: scale(1.02);
  box-shadow: 0 12px 28px rgba(13, 27, 46, 0.16);
}

.button-cyan {
  background: var(--cyan);
  color: var(--navy);
}

.button-blue {
  background: var(--cobalt);
}

.button-light {
  background: var(--white);
  color: var(--navy);
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.38);
  background: transparent;
  color: var(--white);
}

.button-outline-dark {
  border-color: #a9b9ca;
  background: transparent;
  color: var(--navy);
}

.icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  border-bottom: 1px solid #eef2f6;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
}

.brand img {
  width: 48px;
  height: 38px;
  border-radius: 6px;
  object-fit: contain;
}

.brand em {
  color: var(--cobalt);
  font-style: normal;
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links {
  margin-left: auto;
}

.nav-links a:not(.button),
.mobile-menu a:not(.button) {
  color: #414a58;
  font-size: 14px;
  font-weight: 550;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--cobalt);
}

.nav-phone {
  white-space: nowrap;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
}

.mobile-menu {
  display: none;
}

.announcement {
  background: var(--navy);
  color: #cad5e1;
  font-size: 13px;
}

.announcement .shell {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
}

.announcement a {
  color: var(--cyan);
  font-weight: 750;
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.hero::before,
.dark-grid::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  pointer-events: none;
}

.hero-grid {
  position: relative;
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(430px, 0.95fr);
  align-items: center;
  gap: 72px;
  padding-block: 84px;
}

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

.hero h1 {
  max-width: 690px;
  margin-bottom: 24px;
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 16px;
  color: #c7d0dc;
  font-size: 18px;
  line-height: 1.65;
}

.hero-managed {
  margin-bottom: 28px;
  color: var(--cyan);
  font-size: 14px;
  font-weight: 650;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 28px;
  color: #c7d0dc;
  font-size: 13px;
}

.hero-points span {
  position: relative;
  padding-left: 16px;
}

.hero-points span::before {
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  content: "";
}

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

.hero-visual img {
  width: 100%;
  aspect-ratio: 4 / 3.25;
  border-radius: 44px 0 0 44px;
  object-fit: cover;
  object-position: center;
}

.hero-note {
  position: absolute;
  left: -30px;
  bottom: -24px;
  width: min(300px, 78%);
  padding: 20px 24px;
  border-radius: 20px;
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow);
}

.hero-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--cobalt);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 1.5px;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero-note span {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.1;
}

.section {
  padding-block: 108px;
}

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

.section-soft {
  background: var(--ice-2);
}

.section-dark {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

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

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

.section-heading h2 {
  margin-bottom: 18px;
}

.section-heading p {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.section-dark .section-heading p {
  color: #b9c5d3;
}

.feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
  gap: 24px;
}

.feature-primary {
  min-height: 416px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
  border-radius: 20px;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}

.feature-primary h3,
.feature-small h3,
.feature-band h3 {
  margin-bottom: 12px;
  font-family: var(--serif);
  font-weight: 600;
}

.feature-primary p {
  max-width: 650px;
  color: #c7d0dc;
}

.feature-primary img {
  width: 100%;
  height: 225px;
  margin-top: 22px;
  border-radius: 14px;
  object-fit: cover;
}

.feature-stack {
  display: grid;
  gap: 24px;
}

.feature-small {
  min-height: 196px;
  padding: 32px;
  border-radius: 20px;
  background: var(--ice);
}

.feature-small p,
.feature-band p {
  margin-bottom: 0;
  color: var(--muted);
}

.feature-bottom {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 24px;
  margin-top: 24px;
}

.feature-band {
  min-height: 190px;
  padding: 32px;
  border-radius: 20px;
  background: var(--ice);
}

.feature-band.blue {
  background: var(--cobalt);
  color: var(--white);
}

.feature-band.blue p {
  color: #dbe7ff;
}

.pain-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: start;
}

.pain-copy h2 {
  margin-bottom: 22px;
}

.pain-copy p {
  color: var(--muted);
  font-size: 18px;
}

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

.pain-row {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 18px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

.pain-row b {
  display: block;
  margin-bottom: 4px;
}

.pain-row p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.number-chip {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--cobalt);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
}

.calculator {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.calculator-controls {
  padding: 42px;
}

.calculator-results {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px;
  background: var(--navy);
  color: var(--white);
}

.control {
  margin-bottom: 28px;
}

.control:last-child {
  margin-bottom: 0;
}

.control-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 700;
}

.control select {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
}

.control input[type="range"] {
  width: 100%;
  accent-color: var(--cobalt);
}

.result-label {
  color: #aebdcd;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.result-figure {
  margin: 8px 0 4px;
  color: var(--cyan);
  font-family: var(--serif);
  font-size: 66px;
  font-weight: 600;
  line-height: 1;
}

.result-secondary {
  margin-bottom: 22px;
  color: #c7d0dc;
}

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

.step-card {
  min-height: 220px;
  padding: 30px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 2px 0 rgba(13, 27, 46, 0.05);
}

.step-number {
  display: block;
  margin-bottom: 18px;
  color: var(--cobalt);
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
}

.step-card h3 {
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
}

.step-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.workflow-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 76px;
  align-items: center;
}

.workflow-copy p {
  color: var(--muted);
  font-size: 17px;
}

.check-list {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
}

.check-list li::before {
  width: 20px;
  height: 20px;
  display: grid;
  flex: 0 0 20px;
  place-items: center;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--cobalt);
  color: var(--white);
  content: "\2713";
  font-size: 12px;
  font-weight: 800;
}

.appointment {
  padding: 32px;
  border-radius: 22px;
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}

.appointment-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.appointment-top small {
  color: var(--cyan);
  font-weight: 750;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.appointment h3 {
  margin: 16px 0 22px;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 600;
}

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

.appointment dt {
  color: #8fa1b5;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.appointment dd {
  margin: 4px 0 0;
  color: #eef5fb;
  font-size: 14px;
}

.price-intro {
  max-width: 800px;
}

.price-notice {
  max-width: 640px;
  display: flex;
  gap: 14px;
  margin-top: 32px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  color: #d4deea;
}

.price-notice b {
  color: var(--white);
}

.custom-scope-notice {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(220px, 0.75fr) auto;
  align-items: start;
  gap: 24px;
}

.custom-scope-notice .button {
  align-self: start;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: -1px;
}

.plan {
  min-height: 600px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 42px;
  border-radius: 20px;
  background: var(--ice);
}

.plan.dark {
  background: var(--navy);
  color: var(--white);
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 32px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--cyan);
  color: var(--navy);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.plan h3 {
  margin-bottom: 6px;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 600;
}

.plan-copy {
  min-height: 52px;
  color: var(--muted);
  font-size: 14px;
}

.plan.dark .plan-copy {
  color: #aebdcd;
}

.plan-price {
  margin: 20px 0 4px;
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 600;
  line-height: 1;
}

.plan-price span {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
}

.plan-minutes {
  margin-bottom: 22px;
  color: var(--cobalt);
  font-size: 13px;
  font-weight: 750;
}

.plan.dark .plan-minutes {
  color: var(--cyan);
}

.plan .button {
  width: 100%;
  margin-bottom: 28px;
}

.plan ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.plan li {
  display: flex;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}

.plan.dark li {
  color: #c7d0dc;
}

.plan li::before {
  color: var(--cobalt);
  content: "\2713";
  font-weight: 850;
}

.plan.dark li::before {
  color: var(--cyan);
}

.terms-line {
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: start;
}

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

.faq-intro p {
  color: var(--muted);
}

.faq-list {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  overflow: hidden;
}

.faq-item + .faq-item {
  border-top: 1px solid #e7edf4;
}

.faq-question {
  width: 100%;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 26px;
  border: 0;
  background: transparent;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.2;
  text-align: left;
}

.faq-question span:last-child {
  width: 34px;
  height: 34px;
  display: grid;
  flex: 0 0 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-family: var(--sans);
  font-size: 18px;
  transition: transform 0.2s ease;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease;
}

.faq-answer > div {
  overflow: hidden;
}

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

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.open .faq-question span:last-child {
  transform: rotate(45deg);
}

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

.industry-card {
  min-height: 172px;
  padding: 28px;
  border-radius: 20px;
  background: var(--ice);
}

.industry-card.primary {
  background: var(--navy);
  color: var(--white);
}

.industry-card small {
  color: var(--cobalt);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.industry-card.primary small {
  color: var(--cyan);
}

.industry-card h3 {
  margin: 12px 0 10px;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 600;
}

.industry-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.industry-card.primary p {
  color: #b9c5d3;
}

.about-hero {
  position: relative;
  overflow: hidden;
  padding-block: 108px;
  background: var(--navy);
  color: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 72px;
  align-items: center;
}

.about-grid p {
  color: #c7d0dc;
  font-size: 18px;
}

.about-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 32px;
  object-fit: cover;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px;
}

.story-block {
  padding-top: 22px;
  border-top: 2px solid var(--cobalt);
}

.story-block h3 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 600;
}

.story-block p {
  color: var(--muted);
}

.form-shell {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  border-radius: 22px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.form-intro {
  padding: 46px;
  background: var(--navy);
  color: var(--white);
}

.form-intro p {
  color: #c7d0dc;
}

.form-card {
  padding: 46px;
  background: var(--white);
}

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

.field.full {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin-bottom: 7px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 750;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #cbd7e4;
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
}

.field textarea {
  min-height: 110px;
  resize: vertical;
}

.form-card .button {
  width: 100%;
  margin-top: 18px;
}

.nav-links-wide {
  gap: 18px;
}

.nav-links-wide a:not(.button) {
  font-size: 13px;
}

.hero-slogan {
  margin: -2px 0 18px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.slogan-disclaimer {
  max-width: 560px;
  margin-bottom: 0;
  color: #8fa1b5;
  font-size: 11px;
  line-height: 1.55;
}

.positioning-grid,
.solution-grid,
.automation-grid,
.management-grid {
  display: grid;
  gap: 20px;
}

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

.position-card {
  min-height: 250px;
  padding: 34px;
  border-top: 3px solid var(--cobalt);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.position-card h3,
.solution-card h3,
.automation-card h3,
.management-card h3,
.support-card h3 {
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
}

.position-card p,
.solution-card p,
.automation-card p,
.management-card p,
.support-card p {
  margin-bottom: 0;
  color: var(--muted);
}

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

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

.solution-card {
  min-height: 270px;
  position: relative;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  overflow: hidden;
}

.solution-card.dark {
  border-color: transparent;
  background: var(--navy);
  color: var(--white);
}

.solution-card.blue {
  border-color: transparent;
  background: var(--cobalt);
  color: var(--white);
}

.solution-card.dark p,
.solution-card.blue p {
  color: #d3deeb;
}

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

.solution-list li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  font-size: 14px;
}

.solution-list li::before {
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cobalt);
  content: "";
}

.solution-card.dark .solution-list li,
.solution-card.blue .solution-list li,
.solution-list.light li {
  color: #d3deeb;
}

.solution-card.dark .solution-list li::before,
.solution-card.blue .solution-list li::before,
.solution-list.light li::before {
  background: var(--cyan);
}

.solution-number {
  display: block;
  margin-bottom: 54px;
  color: var(--cobalt);
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
}

.solution-card.dark .solution-number,
.solution-card.blue .solution-number {
  color: var(--cyan);
}

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

.automation-card {
  min-height: 190px;
  padding: 30px;
  border: 1px solid rgba(56, 189, 248, 0.28);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.055);
}

.automation-card p {
  color: #b9c5d3;
}

.scope-note {
  margin-top: 28px;
  padding: 22px 24px;
  border: 1px solid rgba(56, 189, 248, 0.42);
  border-radius: 16px;
  background: rgba(56, 189, 248, 0.08);
  color: #d7e4ef;
}

.scope-note.light {
  border-color: #b7dff4;
  background: #f2f9fd;
  color: var(--muted);
}

.demo-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: center;
}

.demo-copy > p {
  color: var(--muted);
  font-size: 17px;
}

.demo-instruction {
  margin: 28px 0;
  padding: 20px 22px;
  border-left: 3px solid var(--cyan);
  background: var(--ice-2);
  color: var(--ink);
}

.demo-number {
  display: inline-block;
  margin: 4px 0 24px;
  color: var(--cobalt);
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 600;
  line-height: 1;
}

.demo-visual {
  position: relative;
}

.demo-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 32px;
  object-fit: cover;
}

.demo-caption {
  width: min(360px, calc(100% - 32px));
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 20px 22px;
  border-radius: 16px;
  background: rgba(13, 27, 46, 0.94);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.demo-caption strong {
  display: block;
  margin-bottom: 4px;
  color: var(--cyan);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

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

.process-grid-six .step-card {
  min-height: 245px;
}

.process-note {
  max-width: 820px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.plan-label {
  display: block;
  margin-bottom: 12px;
  color: var(--cobalt);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.plan.dark .plan-label {
  color: var(--cyan);
}

.plan-price small {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.plan.dark .plan-price small {
  color: #9fb1c4;
}

.plan-footnote {
  margin-top: auto;
  padding-top: 24px;
  color: var(--muted);
  font-size: 12px;
}

.plan.dark .plan-footnote {
  color: #9fb1c4;
}

.pricing-disclaimer {
  max-width: 820px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.support-split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.support-card {
  min-height: 330px;
  padding: 40px;
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.support-card.include {
  border-top: 4px solid var(--cyan);
}

.support-card.exclude {
  border-top: 4px solid var(--cobalt);
}

.support-card .check-list {
  margin-top: 22px;
}

.support-card.exclude ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.support-card.exclude li {
  display: flex;
  gap: 10px;
  color: var(--muted);
}

.support-card.exclude li::before {
  color: var(--cobalt);
  content: "\2014";
  font-weight: 800;
}

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

.management-card {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
}

.management-card.dark {
  border-color: transparent;
  background: var(--navy);
  color: var(--white);
}

.management-card.dark p,
.management-card.dark li {
  color: #c7d0dc;
}

.management-card .button {
  align-self: flex-start;
  margin-top: auto;
}

.oversight-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  align-items: center;
  gap: 72px;
}

.oversight-copy h2 {
  margin-bottom: 20px;
}

.oversight-copy > p {
  color: #b9c5d3;
  font-size: 17px;
}

.oversight-copy .solution-list {
  margin-block: 28px;
}

.oversight-copy .scope-note {
  color: #d7e4ef;
  font-size: 13px;
}

.oversight-visual img {
  width: 100%;
  aspect-ratio: 4 / 3.25;
  border-radius: 32px;
  object-fit: cover;
}

.scope-form-shell {
  align-items: stretch;
}

.scope-form-shell .form-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.scope-form-shell .form-intro .check-list li {
  color: #c7d0dc;
}

.form-consent {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.final-slogan {
  margin-top: 24px !important;
  color: var(--cyan) !important;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.legal-hero {
  padding-block: 86px;
  background: var(--navy);
  color: var(--white);
}

.legal-card {
  padding: 54px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.legal-card h2 {
  margin-top: 46px;
  font-family: var(--serif);
  font-size: 32px;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding-block: 90px;
  background: var(--navy);
  color: var(--white);
  text-align: center;
}

.final-cta h2 {
  max-width: 760px;
  margin: 0 auto 18px;
}

.final-cta p {
  max-width: 660px;
  margin: 0 auto 28px;
  color: #c7d0dc;
}

.final-cta .hero-actions {
  justify-content: center;
  margin-bottom: 0;
}

.footer {
  padding-block: 56px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #091524;
  color: #aebdcd;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 0.75fr);
  gap: 44px;
}

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

.footer-copy {
  max-width: 420px;
  margin: 20px 0;
  font-size: 14px;
}

.footer-tagline {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.footer h3 {
  margin-bottom: 16px;
  color: var(--white);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 9px;
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 46px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
}

.kharis {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
}

.kharis-toggle {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--navy);
  box-shadow: 0 12px 30px rgba(13, 27, 46, 0.25);
  overflow: hidden;
}

.kharis-toggle img {
  width: 100%;
  height: 100%;
  padding: 2px;
  object-fit: contain;
}

.kharis-panel {
  width: 340px;
  position: absolute;
  right: 0;
  bottom: 72px;
  display: none;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow);
}

.kharis.open .kharis-panel {
  display: block;
}

.kharis-panel h3 {
  margin-bottom: 8px;
  font-family: var(--serif);
}

.kharis-panel p,
.kharis-panel li,
.kharis-status {
  color: var(--muted);
  font-size: 13px;
}

.kharis-panel ul {
  margin: 14px 0;
  padding-left: 18px;
}

.kharis-panel .button {
  width: 100%;
  margin-top: 10px;
}

.kharis-status {
  margin-top: 10px;
  text-align: center;
}

.hero-lede-secondary {
  margin-top: -12px;
}

.hero-price-line,
.pricing-reference {
  margin: 20px 0 0;
  color: var(--cyan);
  font-weight: 700;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  color: var(--blue);
  font-weight: 750;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--cyan);
}

.trust-line {
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.short-feature-grid {
  margin-bottom: 30px;
}

.operating-principle {
  max-width: 900px;
  margin: 0 0 26px;
  padding: 26px 30px;
  border-left: 4px solid var(--cyan);
  border-radius: 0 16px 16px 0;
  background: var(--navy);
  color: var(--white);
}

.operating-principle span {
  display: block;
  margin-bottom: 8px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.operating-principle p {
  margin: 0;
  color: #dce6f1;
  font-size: 18px;
}

.short-scope-shell {
  align-items: start;
}

.sensitive-data-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.project-final {
  margin-top: 70px;
  padding: 58px;
  border-radius: 22px;
  background: var(--navy);
  color: var(--white);
  text-align: center;
}

.project-final h2 {
  max-width: 820px;
  margin: 0 auto 12px;
}

.project-final > p {
  margin: 0 auto 26px;
  color: #c5d1df;
}

.project-final .final-slogan {
  margin-top: 24px;
  margin-bottom: 0;
  color: var(--cyan);
}

.footer-grid.footer-grid-wide {
  grid-template-columns: 1.25fr repeat(4, 0.72fr);
  gap: 34px;
}

.kharis-disclosure {
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.page-hero {
  padding-block: 96px;
}

.page-hero .section-heading {
  margin-bottom: 0;
}

.page-hero .section-heading p {
  max-width: 760px;
}

.pricing-packages {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.pricing-package {
  min-height: 100%;
}

.pricing-package .plan-price {
  margin-bottom: 6px;
}

.pricing-package .plan-copy {
  min-height: 58px;
}

.support-summary {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 56px;
  align-items: start;
}

.support-summary .check-list {
  margin-top: 0;
}

.cost-note {
  margin-top: 34px;
  padding: 26px 30px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
}

.cost-note h3 {
  margin-bottom: 8px;
}

.faq-page-layout {
  display: grid;
  gap: 44px;
}

.faq-category {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 44px;
  align-items: start;
}

.faq-category > h2 {
  position: sticky;
  top: 110px;
  font-size: 34px;
}

.compact-cta {
  padding-block: 70px;
}

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

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

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

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

@media (max-width: 1080px) {
  h1 {
    font-size: 54px;
  }

  h2 {
    font-size: 44px;
  }

  .nav-links,
  .nav-actions .nav-phone {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .mobile-menu {
    position: fixed;
    inset: 80px 0 auto;
    z-index: 85;
    max-height: calc(100vh - 80px);
    padding: 26px 24px 32px;
    border-top: 1px solid var(--line);
    background: var(--white);
    box-shadow: var(--shadow);
    overflow: auto;
  }

  .mobile-menu.open {
    display: grid;
    gap: 18px;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.8fr;
    gap: 42px;
  }

  .footer-grid.footer-grid-wide {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

@media (max-width: 820px) {
  .shell,
  .narrow {
    width: min(100% - 32px, 720px);
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 40px;
  }

  .section {
    padding-block: 82px;
  }

  .hero-grid,
  .feature-layout,
  .feature-bottom,
  .pain-grid,
  .calculator,
  .workflow-grid,
  .demo-layout,
  .faq-layout,
  .about-grid,
  .story-grid,
  .support-split,
  .management-grid,
  .form-shell,
  .oversight-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .oversight-layout {
    gap: 46px;
  }

  .oversight-visual img {
    aspect-ratio: 16 / 10;
  }

  .hero-grid {
    min-height: auto;
    padding-block: 72px 90px;
  }

  .hero-visual img {
    aspect-ratio: 16 / 10;
    border-radius: 28px;
  }

  .hero-note {
    left: 18px;
  }

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

  .faq-intro {
    position: static;
  }

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

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

  .plan {
    min-height: auto;
  }

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

  .demo-layout {
    gap: 46px;
  }

  .footer-grid {
    gap: 36px;
  }

  .footer-grid.footer-grid-wide,
  .pricing-packages,
  .support-summary,
  .faq-category {
    grid-template-columns: 1fr;
  }

  .faq-category > h2 {
    position: static;
  }

  .custom-scope-notice {
    grid-template-columns: 1fr;
  }

  .custom-scope-notice .button {
    width: 100%;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }

  h1 {
    font-size: 43px;
  }

  h2 {
    font-size: 36px;
  }

  .site-header {
    position: relative;
  }

  .nav {
    min-height: 68px;
  }

  .brand {
    gap: 8px;
    font-size: 19px;
  }

  .brand img {
    width: 43px;
    height: 34px;
  }

  .nav-actions .button {
    display: none;
  }

  .mobile-menu {
    inset: 68px 0 auto;
  }

  .announcement .shell {
    min-height: 46px;
    display: grid;
    gap: 0;
    padding-block: 7px;
    line-height: 1.35;
  }

  .hero-grid {
    gap: 52px;
    padding-block: 58px 78px;
  }

  .short-home .hero-grid {
    padding-block: 52px 72px;
  }

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

  .hero-actions {
    display: grid;
  }

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

  .hero-points {
    grid-template-columns: 1fr;
  }

  .hero-visual img {
    aspect-ratio: 4 / 3.1;
  }

  .hero-note {
    right: 16px;
    bottom: -30px;
    left: auto;
  }

  .section {
    padding-block: 68px;
  }

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

  .section-heading p {
    font-size: 16px;
  }

  .feature-primary,
  .feature-small,
  .feature-band {
    min-height: 0;
    padding: 24px;
    border-radius: 16px;
  }

  .feature-stack {
    grid-template-columns: 1fr;
  }

  .feature-primary img {
    height: 190px;
  }

  .pain-grid {
    gap: 36px;
  }

  .pain-row {
    grid-template-columns: 34px 1fr;
    padding: 18px;
  }

  .number-chip {
    width: 34px;
    height: 34px;
  }

  .calculator-controls,
  .calculator-results,
  .form-intro,
  .form-card,
  .legal-card {
    padding: 26px;
  }

  .project-final {
    margin-top: 48px;
    padding: 38px 24px;
    border-radius: 18px;
  }

  .operating-principle {
    padding: 22px;
  }

  .page-hero {
    padding-block: 70px;
  }

  .result-figure {
    font-size: 50px;
  }

  .process-grid,
  .positioning-grid,
  .solution-grid,
  .automation-grid,
  .process-grid-six,
  .industry-grid,
  .appointment-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .step-card {
    min-height: 0;
  }

  .position-card,
  .solution-card,
  .automation-card,
  .support-card,
  .management-card {
    min-height: 0;
    padding: 26px;
  }

  .solution-number {
    margin-bottom: 30px;
  }

  .demo-visual img {
    border-radius: 22px;
  }

  .demo-caption {
    position: static;
    width: 100%;
    margin-top: 12px;
  }

  .plan {
    padding: 30px 24px;
  }

  .plan-price {
    font-size: 52px;
  }

  .faq-question {
    min-height: 72px;
    padding: 18px;
    font-size: 19px;
  }

  .faq-answer p {
    padding: 0 18px 20px;
  }

  .about-hero {
    padding-block: 72px;
  }

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

  .kharis {
    right: 14px;
    bottom: 14px;
  }

  .kharis-panel {
    width: min(340px, calc(100vw - 28px));
    right: 0;
    bottom: 68px;
  }
}
