@font-face {
  font-family: Manrope;
  src: url("/assets/manrope-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Manrope;
  src: url("/assets/manrope-bold.ttf") format("truetype");
  font-weight: 600 800;
  font-style: normal;
  font-display: swap;
}
:root {
  --ink: #152b46;
  --muted: #53657b;
  --blue: #2459e0;
  --blue-hover: #1948bf;
  --navy: #112c54;
  --pale: #edf3fc;
  --line: #dce4ee;
  --mint: #a5e3d3;
  --white: #fff;
  --radius: 12px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 106px;
}
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font:
    400 16px/1.7 Manrope,
    Arial,
    sans-serif;
  -webkit-font-smoothing: antialiased;
}
button,
input,
textarea,
select {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
svg {
  display: block;
}
button {
  color: inherit;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 700;
  line-height: 1.18;
}
h2 {
  font-size: clamp(32px, 3.2vw, 44px);
  letter-spacing: -1.6px;
}
h3 {
  letter-spacing: -0.65px;
}
p {
  color: var(--muted);
}
[hidden] {
  display: none !important;
}
.icon-library {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.icon {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.container {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 48px;
}
.skip-link {
  position: fixed;
  top: -80px;
  left: 24px;
  padding: 12px 20px;
  background: white;
  color: var(--blue);
  z-index: 100;
  box-shadow: 0 4px 20px #152b4620;
}
.skip-link:focus {
  top: 12px;
}
:focus-visible {
  outline: 3px solid #3472f4;
  outline-offset: 5px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #ffffffed;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid #e8edf5;
}
.nav-bar {
  min-height: 90px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 29px;
  font-weight: 700;
  letter-spacing: -1.4px;
  line-height: 1;
}
.brand > svg {
  width: 35px;
  height: 35px;
  color: var(--blue);
}
.brand-period {
  color: var(--blue);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 31px;
  font-size: 13px;
  font-weight: 700;
}
.main-nav > a:not(.button) {
  padding-block: 12px;
}
.main-nav > a:not(.button):hover {
  color: var(--blue);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 56px;
  padding: 16px 22px;
  border: 1px solid transparent;
  border-radius: 7px;
  background: var(--blue);
  color: white;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  transition: background 0.18s;
}
.button:hover {
  background: var(--blue-hover);
}
.button-small {
  min-height: 45px;
  padding: 10px 18px;
  font-size: 13px;
}
.button .icon {
  width: 20px;
  height: 20px;
}
.menu-toggle {
  display: none;
}
.hero {
  padding: 80px 0 72px;
  background: linear-gradient(110deg, #fff 35%, #f3f7fe 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  align-items: center;
  gap: 40px;
}
.hero-intro {
  font-size: 12px;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 25px;
  font-weight: 700;
}
.hero-intro > span {
  width: 7px;
  height: 7px;
  background: var(--blue);
  border-radius: 50%;
}
h1 {
  font-size: clamp(50px, 5.55vw, 74px);
  line-height: 1.055;
  letter-spacing: -3.8px;
  margin-bottom: 28px;
}
.hero-description {
  font-size: 16px;
  line-height: 1.85;
  max-width: 470px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 31px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
  border: 0;
  background: transparent;
  padding: 4px 0;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-color: #a0afc2;
}
.text-link:hover {
  text-decoration-color: currentColor;
  color: var(--blue);
}
.hero-note {
  font-size: 11px;
  margin-top: 22px;
  color: #627084;
}
.system-visual {
  background: var(--navy);
  border: 1px solid #183a66;
  border-radius: 18px;
  box-shadow: 0 28px 60px -24px #234a764a;
  overflow: hidden;
  position: relative;
  color: #fff;
  transform: translateY(5px);
}
.visual-heading {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 25px 28px 12px;
  font-size: 13px;
  font-weight: 700;
}
.visual-dot {
  width: 7px;
  height: 7px;
  background: var(--mint);
  border-radius: 50%;
}
.system-diagram {
  width: 100%;
  height: auto;
}
.diagram-orbit {
  fill: none;
  stroke: #34537c;
  stroke-width: 1;
  opacity: 0.4;
}
.diagram-path {
  fill: none;
  stroke: #779dc9;
  stroke-width: 1.5;
}
.diagram-node rect {
  fill: #1c3b64;
  stroke: #48668c;
  stroke-width: 1;
}
.diagram-label {
  fill: #edf3fc;
  text-anchor: middle;
  font:
    400 12px Manrope,
    Arial,
    sans-serif;
}
.diagram-core-label {
  fill: #a9c0df;
  text-anchor: middle;
  font:
    400 11px Manrope,
    Arial,
    sans-serif;
}
.visual-footer {
  border-top: 1px solid #345079;
  padding: 20px 27px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 13px;
  color: #fff;
}
.concept-label {
  font-size: 10px;
  color: #b6c7dd;
}
.principles-strip {
  border-block: 1px solid var(--line);
  background: #fafcff;
}
.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-block: 23px;
  gap: 20px;
}
.principles-grid p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 12px;
  color: #435972;
}
.principles-grid .icon {
  color: var(--blue);
  width: 17px;
  height: 17px;
}
.section {
  padding-block: 100px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 50px;
  margin-bottom: 44px;
}
.section-heading > p {
  max-width: 375px;
  font-size: 14px;
  line-height: 1.9;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  padding: 30px 27px 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.service-icon {
  width: 47px;
  height: 47px;
  border-radius: 10px;
  background: var(--pale);
  color: var(--blue);
  display: grid;
  place-items: center;
  margin-bottom: 26px;
}
.service-card h3 {
  font-size: 24px;
  min-height: 58px;
  line-height: 1.25;
  margin-bottom: 18px;
}
.service-card > p {
  font-size: 14px;
  line-height: 1.9;
}
.service-card ul {
  padding: 0;
  margin: 24px 0 30px;
  list-style: none;
  display: grid;
  gap: 9px;
  font-size: 11px;
  color: #3f526b;
}
.service-card li {
  padding-left: 15px;
  position: relative;
}
.service-card li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #6287dc;
}
.service-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid var(--line);
  padding-top: 21px;
  margin-top: auto;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
}
.service-link .icon {
  width: 19px;
  height: 19px;
}
.service-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.solutions-section {
  padding-block: 88px;
  background: var(--pale);
}
.solution-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 28px;
  align-items: start;
}
.solution-tabs {
  display: grid;
  gap: 12px;
}
.solution-tab {
  display: flex;
  text-align: left;
  align-items: center;
  gap: 15px;
  padding: 23px 18px;
  border: 1px solid transparent;
  border-radius: 9px;
  background: transparent;
  line-height: 1.5;
  transition:
    background 0.18s,
    border-color 0.18s;
}
.solution-tab > span {
  display: grid;
  gap: 5px;
  flex: 1;
}
.solution-tab strong {
  font-size: 13px;
}
.solution-tab span > span {
  font-size: 10px;
  color: var(--muted);
}
.solution-tab > .icon {
  width: 22px;
  height: 22px;
  color: var(--blue);
}
.solution-tab .tab-arrow {
  width: 17px;
  height: 17px;
  opacity: 0;
}
.solution-tab[aria-selected="true"] {
  background: white;
  border-color: #d4def0;
  box-shadow: 0 6px 16px -8px #284f7b20;
}
.solution-tab[aria-selected="true"] .tab-arrow {
  opacity: 1;
}
.solution-tab:hover {
  background: #ffffff90;
}
.solution-panel {
  background: white;
  padding: 30px 34px;
  border: 1px solid #d4def0;
  border-radius: var(--radius);
  min-height: 368px;
}
.example-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  color: #53657b;
  margin-bottom: 26px;
  gap: 12px;
}
.example-tag {
  border: 1px solid var(--line);
  padding: 4px 9px;
  border-radius: 4px;
  color: #425874;
}
.solution-panel h3 {
  font-size: 23px;
  margin-bottom: 13px;
}
.solution-panel > p {
  font-size: 13px;
  max-width: 590px;
  line-height: 1.85;
}
.workflow-example {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 0;
  gap: 8px;
}
.workflow-example > div {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}
.workflow-icon {
  height: 38px;
  width: 38px;
  background: #edf3fc;
  border-radius: 8px;
  display: grid;
  place-items: center;
  margin-bottom: 3px;
  color: var(--blue);
}
.workflow-icon .icon {
  width: 20px;
  height: 20px;
}
.workflow-example strong {
  font-size: 10px;
}
.workflow-example > div > span:last-child {
  font-size: 9px;
  color: var(--muted);
}
.workflow-arrow {
  width: 16px;
  height: 16px;
  color: #8b9eb8;
}
.solution-panel .example-outcome {
  display: flex;
  align-items: center;
  gap: 9px;
  border-top: 1px solid var(--line);
  padding-top: 17px;
  font-size: 10px;
  max-width: none;
}
.example-outcome .icon {
  width: 17px;
  height: 17px;
  color: #25725e;
}
.examples-note {
  text-align: right;
  font-size: 10px;
  margin-top: 18px;
  color: #53657b;
}
.operations-example {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding-block: 25px;
}
.operations-example > div {
  padding: 12px;
  background: #f4f7fb;
  border-radius: 6px;
  font-size: 9px;
}
.operations-example > div > strong {
  color: #546881;
  font-size: 9px;
}
.operations-example > div > span {
  display: block;
  background: #fff;
  padding: 12px 8px;
  margin-top: 10px;
  border: 1px solid #e2e8f1;
  border-radius: 5px;
  font-size: 9px;
}
.operations-example small {
  display: block;
  font-size: 8px;
  color: #64758b;
  margin-top: 7px;
}
.task-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  margin-right: 4px;
}
.blue {
  background: var(--blue);
}
.amber {
  background: #b47611;
}
.green {
  background: #258669;
}
.report-example {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 22px 0;
}
.report-sources {
  display: grid;
  gap: 6px;
  flex: 1;
}
.report-sources > span {
  padding: 7px 13px;
  font-size: 10px;
  background: #f1f5fb;
  border: 1px solid #dce4ee;
  border-radius: 5px;
}
.report-example > .icon {
  color: #8b9eb8;
  width: 20px;
}
.report-destination {
  flex: 1.5;
  background: #edf3fc;
  border: 1px solid #dce4ee;
  border-radius: 8px;
  padding: 18px;
  display: grid;
  gap: 6px;
}
.report-destination > .icon {
  color: var(--blue);
  margin-bottom: 5px;
}
.report-destination strong {
  font-size: 11px;
}
.report-destination span {
  font-size: 9px;
  color: var(--muted);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  list-style: none;
  padding: 0;
  margin: 50px 0 0;
}
.process-grid > li {
  position: relative;
  display: flex;
  flex-direction: column;
}
.step-number {
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--blue);
  margin-bottom: 25px;
}
.step-number:after {
  content: "";
  height: 1px;
  background: #cbd8ee;
  flex: 1;
}
.process-grid h3 {
  font-size: 18px;
  margin-bottom: 14px;
}
.process-grid p {
  font-size: 13px;
  line-height: 1.9;
  margin-bottom: 22px;
}
.step-result {
  font-size: 10px;
  font-weight: 700;
  margin-top: auto;
  color: #496583;
  display: flex;
  align-items: center;
  gap: 7px;
}
.step-result:before {
  content: "";
  width: 4px;
  height: 4px;
  background: var(--blue);
  border-radius: 50%;
}
.about-section {
  background: var(--navy);
  padding: 88px 0;
  color: white;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 110px;
  align-items: center;
}
.about-label,
.contact-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 22px;
}
.about-label {
  color: #a8c5f9;
}
.about-copy h2 {
  max-width: 525px;
  font-size: 38px;
  line-height: 1.2;
  margin-bottom: 25px;
}
.about-copy p {
  color: #c0cde0;
  font-size: 14px;
  line-height: 1.95;
  margin-bottom: 17px;
  max-width: 490px;
}
.light-link {
  color: #fff;
  margin-top: 14px;
  text-decoration-color: #7c9cce;
}
.light-link:hover {
  color: var(--mint);
}
.about-principles {
  display: grid;
  gap: 29px;
}
.about-principles > div {
  position: relative;
  padding-left: 48px;
  border-bottom: 1px solid #3a5271;
  padding-bottom: 28px;
}
.about-principles > div:last-child {
  border: 0;
  padding-bottom: 0;
}
.about-symbol {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--mint);
  font-size: 30px;
  line-height: 1;
}
.about-principles h3 {
  font-size: 17px;
  margin-bottom: 10px;
}
.about-principles p {
  font-size: 13px;
  color: #c0cde0;
  line-height: 1.85;
}
.faq-section {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 90px;
}
.faq-section > div > p {
  font-size: 13px;
  margin-top: 20px;
}
.faq-list {
  border-top: 1px solid var(--line);
}
details {
  border-bottom: 1px solid var(--line);
}
summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 14px;
  font-weight: 700;
  padding: 24px 0;
}
summary::-webkit-details-marker {
  display: none;
}
summary .icon {
  width: 18px;
  height: 18px;
  color: var(--blue);
  transition: transform 0.18s;
}
details[open] summary .icon {
  transform: rotate(45deg);
}
details p {
  font-size: 13px;
  line-height: 1.95;
  padding: 0 35px 24px 0;
}
.contact-section {
  background: #f0f5fc;
  padding: 92px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
  align-items: start;
}
.contact-copy {
  padding-top: 15px;
}
.contact-label {
  color: var(--blue);
}
.contact-copy h2 {
  font-size: 48px;
  line-height: 1.13;
  letter-spacing: -2px;
  margin-bottom: 28px;
}
.contact-copy > p {
  max-width: 370px;
  font-size: 14px;
  line-height: 1.95;
}
.contact-next {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid #cfdbec;
  max-width: 350px;
}
.contact-next h3 {
  font-size: 13px;
  letter-spacing: 0;
  margin-bottom: 11px;
}
.contact-next p {
  font-size: 13px;
  line-height: 1.95;
}
.contact-location {
  display: block;
  color: #53657b;
  font-size: 10px;
  margin-top: 43px;
}
.contact-form {
  padding: 33px 34px;
  background: white;
  border: 1px solid #dbe5f2;
  border-radius: 12px;
  box-shadow: 0 14px 32px -25px #16366050;
}
.contact-form h3 {
  font-size: 22px;
  margin-bottom: 9px;
}
.form-required {
  font-size: 10px;
  margin-bottom: 25px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
}
.field {
  margin-bottom: 19px;
}
.field label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 7px;
}
.optional {
  font-weight: 400;
  color: #61728a;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  font-size: 13px;
  line-height: 1.5;
  border: 1px solid #bdcbe0;
  border-radius: 5px;
  color: var(--ink);
  background: #fff;
  transition: border-color 0.18s;
}
.field select {
  padding-right: 27px;
}
.field textarea {
  resize: vertical;
  min-height: 120px;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid #2459e0;
  outline-offset: 1px;
  border-color: var(--blue);
}
.field textarea::placeholder {
  color: #64758d;
  font-size: 11px;
  line-height: 1.8;
}
.field :user-invalid {
  border-color: #ac3344;
}
.form-note {
  font-size: 11px;
  line-height: 1.9;
  margin: 0 0 20px;
}
.submit-button {
  width: 100%;
  justify-content: space-between;
  min-height: 50px;
  padding: 13px 19px;
}
.submit-button:disabled {
  opacity: 0.65;
  cursor: wait;
}
.form-status {
  font-size: 12px;
  line-height: 1.8;
  color: #a0293e;
}
.form-status:not(:empty) {
  margin-top: 17px;
  padding: 12px;
  background: #fff3f4;
  border-radius: 6px;
}
.honeypot {
  display: none;
}
.form-success {
  padding: 65px 5px;
  text-align: center;
}
.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #e7f5ee;
  color: #267956;
  display: grid;
  place-items: center;
  margin: 0 auto 26px;
}
.form-success h3 {
  font-size: 25px;
  margin-bottom: 17px;
}
.form-success p {
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 25px;
}
.site-footer {
  padding: 44px 0 23px;
}
.footer-top {
  display: flex;
  align-items: center;
  gap: 36px;
  padding-bottom: 37px;
}
.footer-top .brand {
  font-size: 26px;
}
.footer-top .brand > svg {
  width: 30px;
  height: 30px;
}
.footer-top p {
  font-size: 10px;
  line-height: 1.9;
}
.footer-top nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
  font-size: 11px;
}
.footer-top nav a:hover {
  color: var(--blue);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-size: 10px;
  color: #66768a;
  position: relative;
  padding-top: 23px;
}
.footer-bottom:before {
  content: "";
  height: 1px;
  position: absolute;
  left: 48px;
  right: 48px;
  top: 0;
  background: var(--line);
}
.footer-bottom > a {
  display: flex;
  gap: 10px;
}
@media (min-width: 1440px) {
  .hero {
    padding-block: 90px;
  }
  .hero-grid {
    gap: 60px;
  }
  h1 {
    font-size: 77px;
  }
  .hero-description {
    font-size: 17px;
  }
}
@media (max-width: 1100px) {
  .container {
    padding-inline: 32px;
  }
  .main-nav {
    gap: 22px;
  }
  .hero-grid {
    gap: 27px;
  }
  .hero {
    padding-block: 64px;
  }
  h1 {
    font-size: 60px;
    letter-spacing: -3px;
  }
  .hero-actions {
    gap: 16px;
  }
  .hero-actions .button {
    font-size: 12px;
    padding: 15px 16px;
    gap: 12px;
  }
  .hero-note {
    font-size: 10px;
  }
  .service-card {
    padding: 26px 23px;
  }
  .service-card h3 {
    font-size: 21px;
  }
  .service-card li {
    font-size: 12px;
  }
  .service-link {
    font-size: 12px;
  }
  .solution-layout {
    grid-template-columns: 285px 1fr;
    gap: 20px;
  }
  .solution-panel {
    padding: 27px;
  }
  .about-grid {
    gap: 65px;
  }
  .about-copy h2 {
    font-size: 34px;
  }
  .contact-grid {
    gap: 65px;
  }
  .contact-copy h2 {
    font-size: 43px;
  }
  .contact-form {
    padding: 28px;
  }
  .footer-bottom:before {
    left: 32px;
    right: 32px;
  }
}
@media (max-width: 850px) {
  .nav-bar {
    min-height: 78px;
  }
  .main-nav {
    gap: 18px;
    font-size: 11px;
  }
  .button-small {
    font-size: 11px;
    padding: 10px 14px;
    gap: 10px;
  }
  .hero-grid {
    gap: 28px;
    grid-template-columns: 1fr 1fr;
  }
  h1 {
    font-size: 49px;
    letter-spacing: -2.5px;
  }
  .hero-intro {
    font-size: 10px;
  }
  .hero-description {
    font-size: 13px;
  }
  .hero-note {
    line-height: 1.8;
  }
  .visual-heading {
    padding: 20px 19px 10px;
    font-size: 11px;
  }
  .visual-footer {
    padding: 17px 19px;
    font-size: 11px;
  }
  .concept-label {
    font-size: 9px;
  }
  .principles-grid {
    gap: 12px;
  }
  .principles-grid p {
    font-size: 10px;
    gap: 7px;
  }
  .section {
    padding-block: 76px;
  }
  .section-heading {
    gap: 35px;
  }
  .section-heading > p {
    max-width: 280px;
    font-size: 14px;
  }
  .services-grid {
    gap: 14px;
  }
  .service-card {
    padding: 23px 19px;
  }
  .service-card h3 {
    font-size: 19px;
    min-height: 70px;
  }
  .service-card > p {
    font-size: 14px;
  }
  .service-card li {
    font-size: 12px;
  }
  .service-link {
    font-size: 12px;
    align-items: flex-start;
  }
  .service-icon {
    margin-bottom: 22px;
  }
  .solution-layout {
    grid-template-columns: 1fr;
  }
  .solution-tabs {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .solution-tab {
    align-items: flex-start;
    padding: 16px 12px;
    gap: 9px;
  }
  .solution-tab > .icon {
    width: 18px;
    height: 18px;
  }
  .solution-tab strong {
    font-size: 11px;
  }
  .solution-tab span > span {
    font-size: 9px;
  }
  .solution-tab .tab-arrow {
    display: none;
  }
  .solution-panel {
    min-height: 343px;
  }
  .solutions-section {
    padding-block: 73px;
  }
  .process-grid {
    gap: 20px;
  }
  .process-grid h3 {
    font-size: 16px;
  }
  .process-grid p {
    font-size: 13px;
  }
  .step-result {
    font-size: 9px;
  }
  .about-grid {
    gap: 50px;
  }
  .about-copy h2 {
    font-size: 31px;
  }
  .about-principles h3 {
    font-size: 15px;
  }
  .about-principles p {
    font-size: 13px;
  }
  .about-section {
    padding-block: 73px;
  }
  .faq-section {
    grid-template-columns: 1fr 1.6fr;
    gap: 45px;
  }
  .contact-grid {
    gap: 40px;
  }
  .contact-copy h2 {
    font-size: 38px;
  }
  .contact-copy > p {
    font-size: 14px;
  }
  .contact-form {
    padding: 25px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .contact-form h3 {
    font-size: 20px;
  }
  .contact-section {
    padding-block: 75px;
  }
}
@media (max-width: 700px) {
  html {
    scroll-padding-top: 90px;
  }
  .container {
    padding-inline: 24px;
  }
  .nav-bar {
    min-height: 75px;
  }
  .brand {
    font-size: 27px;
  }
  .brand > svg {
    width: 32px;
    height: 32px;
  }
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    min-width: 84px;
    min-height: 44px;
    border: 1px solid var(--line);
    border-radius: 5px;
    background: white;
    font-size: 12px;
    font-weight: 700;
  }
  .menu-lines {
    position: relative;
    width: 15px;
    height: 10px;
    border-top: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
  }
  .menu-toggle[aria-expanded="true"] .menu-lines {
    border: 0;
  }
  .menu-toggle[aria-expanded="true"] .menu-lines:before,
  .menu-toggle[aria-expanded="true"] .menu-lines:after {
    content: "";
    position: absolute;
    inset: 4px 0 auto;
    height: 1.5px;
    background: currentColor;
    transform: rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] .menu-lines:after {
    transform: rotate(-45deg);
  }
  .main-nav {
    display: none;
    position: absolute;
    top: 75px;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid var(--line);
    padding: 15px 24px 23px;
    box-shadow: 0 15px 20px -15px #16366025;
    align-items: stretch;
    gap: 2px;
    font-size: 15px;
  }
  .main-nav.is-open {
    display: flex;
    flex-direction: column;
  }
  .main-nav > a:not(.button) {
    padding: 12px 2px;
  }
  .main-nav > .button {
    margin-top: 10px;
    font-size: 13px;
  }
  .hero {
    padding: 49px 0 45px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 37px;
  }
  .hero-copy {
    max-width: 560px;
  }
  .hero-intro {
    font-size: 11px;
    margin-bottom: 21px;
  }
  h1 {
    font-size: clamp(49px, 10.4vw, 65px);
    letter-spacing: -2.8px;
    line-height: 1.08;
    margin-bottom: 23px;
  }
  .desktop-break {
    display: none;
  }
  .hero-description {
    font-size: 15px;
    line-height: 1.8;
    max-width: 490px;
  }
  .hero-actions {
    margin-top: 26px;
    gap: 18px;
  }
  .hero-actions .button {
    font-size: 13px;
    padding: 15px 19px;
    min-height: 53px;
  }
  .hero-actions .text-link {
    font-size: 12px;
  }
  .hero-note {
    font-size: 10px;
    margin-top: 19px;
  }
  .system-visual {
    transform: none;
    max-width: 540px;
    width: 100%;
    justify-self: center;
    border-radius: 13px;
  }
  .visual-heading {
    font-size: 12px;
    padding: 22px 24px 4px;
  }
  .visual-footer {
    padding: 17px 24px;
  }
  .system-diagram {
    max-height: 365px;
  }
  .principles-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-block: 22px;
  }
  .principles-grid p {
    font-size: 11px;
    justify-content: flex-start;
  }
  .principles-grid .icon {
    width: 16px;
    height: 16px;
  }
  .section {
    padding-block: 64px;
  }
  h2 {
    font-size: 34px;
    letter-spacing: -1.4px;
  }
  .section-heading {
    display: block;
    margin-bottom: 32px;
  }
  .section-heading > p {
    font-size: 14px;
    max-width: 460px;
    margin-top: 20px;
    line-height: 1.9;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 17px;
  }
  .service-card {
    padding: 27px;
  }
  .service-icon {
    margin-bottom: 20px;
  }
  .service-card h3 {
    font-size: 26px;
    min-height: 0;
    margin-bottom: 15px;
  }
  .service-card h3 br {
    display: none;
  }
  .service-card > p {
    font-size: 14px;
  }
  .service-card ul {
    margin-block: 21px 26px;
    gap: 7px;
  }
  .service-card li {
    font-size: 12px;
  }
  .service-link {
    font-size: 12px;
  }
  .solutions-section {
    padding-block: 62px;
  }
  .solution-tabs {
    grid-template-columns: 1fr;
  }
  .solution-tab {
    padding: 15px 17px;
    align-items: center;
    gap: 12px;
  }
  .solution-tab strong {
    font-size: 12px;
  }
  .solution-tab span > span {
    font-size: 10px;
  }
  .solution-tab .tab-arrow {
    display: block;
  }
  .solution-panel {
    padding: 23px 20px;
    min-height: 0;
  }
  .example-header {
    font-size: 9px;
    margin-bottom: 22px;
  }
  .example-tag {
    font-size: 9px;
  }
  .solution-panel h3 {
    font-size: 23px;
  }
  .solution-panel > p {
    font-size: 13px;
  }
  .workflow-example {
    gap: 4px;
    padding-block: 25px;
  }
  .workflow-example strong {
    font-size: 9px;
    line-height: 1.6;
  }
  .workflow-example > div > span:last-child {
    font-size: 8px;
    line-height: 1.7;
    max-width: 85px;
  }
  .workflow-arrow {
    width: 12px;
    height: 12px;
  }
  .solution-panel .example-outcome {
    align-items: flex-start;
    font-size: 10px;
    gap: 7px;
  }
  .example-outcome > .icon {
    margin-top: 2px;
  }
  .examples-note {
    text-align: left;
    font-size: 9px;
    line-height: 1.8;
  }
  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 23px;
    margin-top: 36px;
  }
  .step-number {
    margin-bottom: 18px;
  }
  .process-grid h3 {
    font-size: 18px;
  }
  .process-grid p {
    font-size: 13px;
    margin-bottom: 17px;
  }
  .step-result {
    font-size: 9px;
  }
  .about-section {
    padding-block: 61px;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 43px;
  }
  .about-copy h2 {
    font-size: 34px;
    max-width: 480px;
  }
  .about-copy p {
    font-size: 14px;
  }
  .about-principles {
    gap: 23px;
  }
  .about-principles h3 {
    font-size: 17px;
  }
  .about-principles p {
    font-size: 13px;
  }
  .about-principles > div {
    padding-bottom: 23px;
  }
  .faq-section {
    grid-template-columns: 1fr;
    gap: 31px;
  }
  .faq-section h2 br {
    display: none;
  }
  .faq-section > div > p {
    margin-top: 14px;
    font-size: 12px;
  }
  summary {
    font-size: 13px;
    gap: 16px;
    padding: 22px 0;
  }
  details p {
    padding-right: 16px;
    font-size: 13px;
  }
  .contact-section {
    padding-block: 60px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .contact-copy {
    padding: 0;
  }
  .contact-copy h2 {
    font-size: 43px;
    line-height: 1.15;
  }
  .contact-copy h2 br:last-child {
    display: none;
  }
  .contact-copy > p {
    font-size: 14px;
    max-width: 450px;
  }
  .contact-next {
    margin-top: 27px;
    max-width: 450px;
  }
  .contact-location {
    margin-top: 24px;
  }
  .contact-form {
    padding: 25px;
  }
  .contact-form h3 {
    font-size: 22px;
  }
  .form-row {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .field input,
  .field select,
  .field textarea {
    font-size: 16px;
    min-height: 48px;
  }
  .field label {
    font-size: 12px;
  }
  .form-note {
    font-size: 11px;
  }
  .site-footer {
    padding-block: 35px 23px;
  }
  .footer-top {
    flex-wrap: wrap;
    gap: 21px;
    padding-bottom: 25px;
    align-items: flex-start;
  }
  .footer-top p {
    margin-left: auto;
  }
  .footer-top nav {
    margin: 5px 0 0;
    width: 100%;
    gap: 24px;
    font-size: 12px;
  }
  .footer-top nav a {
    padding-block: 5px;
  }
  .footer-bottom {
    font-size: 10px;
    padding-top: 23px;
    gap: 12px;
  }
  .footer-bottom:before {
    left: 24px;
    right: 24px;
  }
  .operations-example {
    gap: 6px;
  }
  .operations-example > div {
    padding: 9px 6px;
  }
  .operations-example > div > span {
    padding: 10px 6px;
  }
  .report-example {
    gap: 13px;
  }
  .report-destination {
    padding: 14px;
  }
  .report-destination strong {
    font-size: 10px;
  }
}
@media (max-width: 380px) {
  .container {
    padding-inline: 20px;
  }
  .hero-intro {
    font-size: 10px;
  }
  h1 {
    font-size: 46px;
  }
  .hero-actions {
    gap: 16px;
  }
  .hero-actions .button {
    width: 100%;
    justify-content: space-between;
    font-size: 12px;
  }
  .hero-note {
    font-size: 9px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .contact-form {
    padding: 21px;
  }
  .process-grid {
    grid-template-columns: 1fr;
    gap: 27px;
  }
  .process-grid h3 {
    font-size: 20px;
  }
  .process-grid p {
    font-size: 13px;
  }
  .step-result {
    font-size: 10px;
  }
  .footer-bottom:before {
    left: 20px;
    right: 20px;
  }
  .solution-panel {
    padding: 22px 17px;
  }
  .operations-example {
    grid-template-columns: 1fr;
  }
  .report-example {
    gap: 8px;
  }
  .report-sources > span {
    padding-inline: 8px;
    font-size: 9px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
}
@media print {
  .site-header {
    position: static;
  }
  .menu-toggle,
  .hero-actions,
  .contact-form,
  .footer-top nav {
    display: none;
  }
  .container {
    padding-inline: 0;
  }
  .section,
  .about-section,
  .solutions-section,
  .contact-section {
    padding-block: 30px;
  }
  .system-visual,
  .about-section {
    print-color-adjust: exact;
  }
  .contact-grid {
    display: block;
  }
  .service-card,
  .solution-panel {
    break-inside: avoid;
  }
}
