:root {
  --blue-deep: #14385C;
  --blue-primary: #1C5882;
  --blue-bright: #2F7BA8;
  --blue-soft: #7EBCCE;
  --blue-pale: #AFD3DA;
  --gray-900: #222628;
  --gray-700: #5C5F60;
  --gray-500: #8F9293;
  --gray-300: #BABFC2;
  --gray-200: #D7DBDE;
  --gray-100: #E9ECEE;
  --gray-50: #F4F6F7;
  --paper: #FBFCFD;
  --white: #fff;
  --maxw: 1160px;
  --shadow-sm: 0 1px 3px rgba(20, 56, 92, .06), 0 1px 2px rgba(20, 56, 92, .04);
  --shadow-md: 0 12px 28px -10px rgba(20, 56, 92, .22);
  --shadow-lg: 0 30px 60px -18px rgba(20, 56, 92, .40);
  --radius: 14px;
  --radius-lg: 22px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial, sans-serif;
  color: var(--gray-900);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased
}

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

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

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px
}

.container--narrow {
  max-width: 780px
}

h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: -.02em;
  font-weight: 800;
  color: var(--blue-deep)
}

h1 {
  font-size: clamp(34px, 5vw, 58px)
}

h2 {
  font-size: clamp(27px, 3.4vw, 40px)
}

h3 {
  font-size: 20px;
  font-weight: 700
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--blue-bright);
  margin-bottom: 16px
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--blue-bright);
  display: inline-block
}

.lead {
  font-size: 19px;
  color: var(--gray-700)
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s var(--ease), box-shadow .2s, background .2s
}

.btn svg {
  width: 18px;
  height: 18px
}

.btn--primary {
  background: var(--blue-bright);
  color: #fff;
  box-shadow: 0 8px 18px -6px rgba(47, 123, 168, .6)
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px -8px rgba(47, 123, 168, .7)
}

.btn--ghost {
  background: transparent;
  color: var(--blue-primary);
  border-color: var(--blue-pale)
}

.btn--ghost:hover {
  background: var(--gray-50);
  border-color: var(--blue-soft)
}

.btn--white {
  background: #fff;
  color: var(--blue-primary)
}

.btn--white:hover {
  transform: translateY(-2px)
}

.btn--lg {
  padding: 17px 32px;
  font-size: 16px
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 252, 253, .88);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--gray-100)
}

.header__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px
}

.brand {
  cursor: pointer;
  line-height: 0
}

.brand img {
  height: 30px;
  width: auto
}

.header__right {
  display: flex;
  align-items: center;
  gap: 14px
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px
}

.nav a {
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--gray-700);
  transition: color .15s, background .15s;
  cursor: pointer
}

.nav a:hover {
  color: var(--blue-primary);
  background: var(--gray-50)
}

.nav a.is-active {
  color: var(--blue-primary);
  font-weight: 700
}

.nav .btn {
  margin-left: 10px;
  padding: 11px 20px;
  color :white;
}

.nav__burger {
  display: none;
  font-size: 20px
}

.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(1100px 500px at 78% -10%, rgba(47, 123, 168, .45), transparent 60%), linear-gradient(140deg, var(--blue-deep) 0%, var(--blue-primary) 60%, #205f86 100%);
  color: #fff;
  padding: 84px 0 92px
}

.hero__grid {
  display: flex;
  gap: 56px;
  align-items: center;
  position: relative
}

.hero__grid>div:first-child {
  flex: 1.08
}

.hero__card {
  flex: .92
}

.hero .eyebrow {
  color: var(--blue-soft)
}

.hero .eyebrow::before {
  background: var(--blue-soft)
}

.hero h1 {
  color: #fff;
  margin-bottom: 20px
}

.hero h1 em {
  font-style: normal;
  color: var(--blue-soft);
  display: block
}

.hero__sub {
  font-size: 19px;
  color: #D7E1E8;
  max-width: 520px;
  margin-bottom: 32px
}

.hero__sub b {
  color: #fff;
  font-weight: 700
}

.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

.hero__meta {
  display: flex;
  gap: 26px;
  margin-top: 34px;
  flex-wrap: wrap
}

.hero__meta div {
  display: flex;
  flex-direction: column;
  margin-right: 22px
}

.hero__meta b {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em
}

.hero__meta span {
  font-size: 12.5px;
  color: var(--blue-pale);
  text-transform: uppercase;
  letter-spacing: .08em
}

.hero__card {
  position: relative;
  background: linear-gradient(150deg, #fff, #EDF1F4);
  border-radius: var(--radius-lg);
  padding: 46px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 330px
}

.hero__card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 28% 22%, rgba(255, 255, 255, .7), transparent 55%);
  pointer-events: none
}

.hero__card img {
  width: 100%;
  max-width: 330px;
  position: relative;
  z-index: 1
}

.hero__badge {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: var(--blue-primary);
  font-weight: 700;
  font-size: 13px;
  padding: 9px 18px;
  border-radius: 30px;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2
}

.emblem {
  display: block
}

.hero__badge .emblem {
  height: 22px;
  width: auto
}

.proofbar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100)
}

.proofbar__grid {
  display: flex
}

.proofbar__it {
  flex: 1
}

.proofbar__it {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 26px 22px;
  border-right: 1px solid var(--gray-100)
}

.proofbar__it:last-child {
  border-right: none
}

.proofbar__ic {
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: var(--gray-50);
  color: var(--blue-bright);
  display: flex;
  align-items: center;
  justify-content: center
}

.proofbar__ic svg {
  width: 21px;
  height: 21px
}

.proofbar__it b {
  display: block;
  font-size: 14.5px;
  color: var(--blue-deep);
  font-weight: 700
}

.proofbar__it span {
  font-size: 12.5px;
  color: var(--gray-500);
  line-height: 1.4
}

.section {
  padding: 88px 0
}

.section--alt {
  background: var(--gray-50)
}

.sec-head {
  max-width: 680px;
  margin: 0 auto 52px;
  text-align: center
}

.sec-head p {
  margin-top: 14px;
  color: var(--gray-700);
  font-size: 18px
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  max-width: 940px;
  margin: 0 auto
}

.pcard {
  width: calc(50% - 11px)
}

.pcard {
  position: relative;
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 30px;
  cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .2s, border-color .2s;
  overflow: hidden
}

.pcard::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(var(--blue-primary), var(--blue-bright));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .25s var(--ease)
}

.pcard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-pale)
}

.pcard:hover::before {
  transform: scaleY(1)
}

.pcard__ic {
  width: 54px;
  height: 54px;
  border-radius: 13px;
  background: var(--gray-50);
  color: var(--blue-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px
}

.pcard__ic svg {
  width: 27px;
  height: 27px
}

.pcard__tag {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--blue-soft);
  margin-bottom: 7px;
  display: block
}

.pcard h3 {
  margin-bottom: 10px
}

.pcard p {
  color: var(--gray-700);
  font-size: 14.5px;
  margin-bottom: 16px
}

.pcard__link {
  font-weight: 700;
  color: var(--blue-bright);
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px
}

.pcard__link svg {
  width: 16px;
  height: 16px;
  transition: transform .2s
}

.pcard:hover .pcard__link svg {
  transform: translateX(4px)
}

.about {
  display: flex;
  gap: 60px;
  align-items: center
}

.about>div {
  flex: 1;
  min-width: 0
}

.feat {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 26px
}

.feat li {
  display: flex;
  gap: 16px;
  list-style: none
}

.feat__ic {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--blue-pale);
  color: var(--blue-deep);
  display: flex;
  align-items: center;
  justify-content: center
}

.feat__ic svg {
  width: 17px;
  height: 17px
}

.feat b {
  display: block;
  color: var(--blue-deep);
  font-size: 15.5px;
  margin-bottom: 4px
}

.feat span {
  color: var(--gray-700);
  font-size: 14.5px
}

.about__visual {
  position: relative;
  background: linear-gradient(150deg, var(--blue-primary), var(--blue-deep));
  border-radius: var(--radius-lg);
  padding: 40px;
  color: #fff;
  box-shadow: var(--shadow-md)
}

.about__visual .emblem {
  height: 54px;
  width: auto;
  margin-bottom: 18px
}

.about__visual h3 {
  color: #fff;
  font-size: 23px;
  margin-bottom: 12px
}

.about__visual p {
  color: #D7E1E8;
  font-size: 15px
}

.about__stats {
  display: flex;
  flex-wrap: wrap;
  margin-top: 26px;
  background: rgba(255, 255, 255, .16);
  border-radius: 12px;
  overflow: hidden;
  gap: 1px
}

.about__stats div {
  width: calc(50% - .5px)
}

.about__stats div {
  background: var(--blue-primary);
  padding: 18px
}

.about__stats b {
  font-size: 24px;
  font-weight: 800;
  display: block;
  letter-spacing: -.02em
}

.about__stats span {
  font-size: 12px;
  color: var(--blue-pale);
  text-transform: uppercase;
  letter-spacing: .06em
}

.dhero {
  background: radial-gradient(800px 400px at 85% -20%, rgba(47, 123, 168, .4), transparent 60%), linear-gradient(140deg, var(--blue-deep), var(--blue-primary));
  color: #fff;
  padding: 62px 0 72px
}

.back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--blue-pale);
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 24px;
  cursor: pointer
}

.back svg {
  width: 15px;
  height: 15px
}

.back:hover {
  color: #fff
}

.dhero__tag {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--blue-soft);
  margin-bottom: 14px
}

.dhero h1 {
  color: #fff;
  max-width: 800px;
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.12
}

.dhero p {
  color: #D7E1E8;
  font-size: 18px;
  max-width: 620px;
  line-height: 1.6
}

.dbody {
  padding: 66px 0
}

.dbody__grid {
  display: flex;
  gap: 64px;
  align-items: flex-start
}

.dbody__grid>.prose {
  flex: 1;
  min-width: 0
}

.aside {
  width: 320px;
  flex: none
}

.prose {
  color: var(--gray-700)
}

.prose>* {
  max-width: 680px
}

.prose>*+* {
  margin-top: 22px
}

.prose p {
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--gray-700)
}

.prose strong {
  color: var(--gray-900)
}

.prose h2 {
  font-size: 23px;
  color: var(--blue-primary);
  margin-top: 52px;
  line-height: 1.2
}

.prose>h2:first-child {
  margin-top: 0
}

.prose h2::before {
  content: "";
  display: block;
  width: 38px;
  height: 3px;
  border-radius: 2px;
  background: var(--blue-bright);
  margin-bottom: 16px
}

.prose h3 {
  font-size: 19px;
  color: var(--blue-primary);
  margin-top: 16px
}

.prose .lede {
  font-size: 19px;
  line-height: 1.65;
  color: var(--blue-deep);
  font-weight: 500;
  background: linear-gradient(180deg, #F4F8FA, #ECF3F6);
  border-left: 4px solid var(--blue-bright);
  padding: 22px 26px;
  border-radius: 0 14px 14px 0;
  margin-bottom: 6px
}

.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px
}

.checklist li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  color: var(--gray-700);
  font-size: 16px;
  line-height: 1.65
}

.checklist .ck {
  flex: none;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--blue-pale);
  color: var(--blue-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px
}

.checklist .ck svg {
  width: 15px;
  height: 15px
}

.checklist b {
  display: block;
  color: var(--blue-primary);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 6px
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
  counter-reset: s
}

.step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 14px;
  padding: 20px 22px
}

.step__n {
  counter-increment: s;
  flex: none;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(150deg, var(--blue-primary), var(--blue-bright));
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px
}

.step__n::before {
  content: counter(s, decimal-leading-zero)
}

.step b {
  display: block;
  color: var(--blue-deep);
  font-size: 16px;
  margin-bottom: 4px
}

.step span {
  color: var(--gray-700);
  font-size: 15px;
  line-height: 1.6
}

.prose h2+.checklist,
.prose h2+.steps,
.prose h3+.checklist,
.prose h3+.steps {
  margin-top: 30px
}

.note {
  background: #FFF8EC;
  border: 1px solid #F4D9A6;
  border-radius: 12px;
  padding: 18px 20px;
  font-size: 15px;
  color: #7a5a1e;
  max-width: 680px
}

.note b {
  color: #5e4416
}

.aside {
  position: sticky;
  top: 96px;
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden
}

.aside__top {
  background: linear-gradient(150deg, var(--blue-primary), var(--blue-deep));
  color: #fff;
  padding: 24px
}

.aside__top .emblem {
  height: 40px;
  width: auto;
  margin-bottom: 10px
}

.aside__top h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 6px
}

.aside__top p {
  color: #D7E1E8;
  font-size: 13.5px
}

.aside__body {
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.aside__body .btn {
  width: 100%;
  justify-content: center
}

.aside__row {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 14px;
  color: var(--gray-700)
}

.aside__row svg {
  width: 17px;
  height: 17px;
  color: var(--blue-bright);
  flex: none
}

.ph-strip {
  display: flex;
  gap: 14px;
  margin-top: 8px
}

.ph {
  flex: 1
}

.ph {
  aspect-ratio: 4/3;
  border-radius: 12px;
  background: repeating-linear-gradient(45deg, var(--gray-50), var(--gray-50) 11px, var(--gray-100) 11px, var(--gray-100) 22px);
  border: 1px dashed var(--gray-300);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  font-size: 12.5px;
  font-weight: 600;
  text-align: center;
  padding: 10px
}

.tgrid {
  display: flex;
  gap: 22px
}

.tcard {
  flex: 1
}

.tcard {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm)
}

.tcard__stars {
  color: #F2A93B;
  letter-spacing: 2px;
  margin-bottom: 12px;
  font-size: 15px
}

.tcard p {
  color: var(--gray-700);
  font-size: 15px;
  font-style: italic;
  margin-bottom: 16px
}

.tcard b {
  color: var(--blue-deep);
  font-size: 14.5px
}

.tcard span {
  color: var(--gray-500);
  font-size: 13px
}

.ph-pill {
  display: inline-block;
  background: var(--blue-pale);
  color: var(--blue-deep);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 14px
}

.ctaband {
  background: radial-gradient(700px 300px at 20% 120%, rgba(47, 123, 168, .5), transparent 60%), linear-gradient(140deg, var(--blue-deep), var(--blue-primary));
  color: #fff;
  text-align: center;
  padding: 74px 0
}

.ctaband h2 {
  color: #fff;
  margin-bottom: 14px
}

.ctaband p {
  color: #D7E1E8;
  font-size: 18px;
  max-width: 520px;
  margin: 0 auto 30px
}

.ctaband__btns {
  display: flex;
  gap: 13px;
  justify-content: center;
  flex-wrap: wrap
}

.contact {
  display: flex;
  gap: 50px;
  align-items: flex-start
}

.contact>div {
  flex: 1;
  min-width: 0
}

.field {
  margin-bottom: 16px
}

.field label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--blue-deep);
  margin-bottom: 6px
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--gray-300);
  border-radius: 10px;
  font: inherit;
  font-size: 15px;
  background: #fff;
  color: var(--gray-900)
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--blue-bright);
  box-shadow: 0 0 0 3px rgba(47, 123, 168, .15)
}

.contact__info {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 30px
}

.contact__info h3 {
  margin-bottom: 18px
}

.cinfo {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  margin-bottom: 18px;
  font-size: 15px;
  color: var(--gray-700)
}

.cinfo svg {
  width: 19px;
  height: 19px;
  color: var(--blue-bright);
  flex: none;
  margin-top: 2px
}

.cinfo b {
  display: block;
  color: var(--blue-deep)
}

.footer {
  background: var(--blue-deep);
  color: var(--gray-300);
  padding: 64px 0 28px;
  font-size: 14px
}

.footer__grid {
  display: flex;
  gap: 36px;
  flex-wrap: wrap
}

.footer__grid>div:nth-child(1) {
  flex: 1.5
}

.footer__grid>div:nth-child(2) {
  flex: 1
}

.footer__grid>div:nth-child(3) {
  flex: 1
}

.footer__grid>div:nth-child(4) {
  flex: 1.1
}

.footer__logo {
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  width: 160px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px
}

.footer__logo img {
  width: 100%
}

.footer p {
  line-height: 1.7;
  max-width: 260px;
  font-size: 13.5px
}

.footer h4 {
  color: #fff;
  font-size: 15px;
  margin-bottom: 14px;
  font-weight: 700
}

.footer a {
  display: block;
  padding: 5px 0;
  color: var(--gray-300);
  font-size: 14px;
  cursor: pointer
}

.footer a:hover {
  color: #fff
}

.footer__small {
  color: var(--gray-500);
  font-size: 12px;
  margin-top: 14px;
  line-height: 1.6
}

.footer__bottom {
  text-align: center;
  color: var(--gray-500);
  font-size: 12.5px;
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  position: relative
}

.footer__bottom b {
  color: var(--blue-soft)
}

.header__social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 14px;
  padding-left: 14px;
  border-left: 1px solid var(--gray-200)
}

.header__social-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  white-space: nowrap
}

.header__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .15s, box-shadow .15s
}

.header__social-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md)
}

.header__social-link svg {
  width: 26px;
  height: 26px;
  stroke-width: 2.4
}

.header__social-link--fb {
  background: #1877F2
}

.header__social-link--ig {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%)
}

@media(max-width:1080px) {
  .header__social-label {
    display: none
  }

  .header__social {
    margin-left: 8px;
    padding-left: 8px
  }
}

.machines {
  margin-top: 40px;
}
.machines__head {
  margin-bottom: 20px;
}
.machines__head h3 {
  font-size: 22px;
  color: var(--blue-deep);
  margin-top: 6px;
}
.machines__grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.machine {
  flex: 1 1 calc(50% - 11px);
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: stretch;
  box-shadow: var(--shadow-sm);
  transition: transform .18s var(--ease), box-shadow .2s;
  min-width: 0;
  padding: 0;
  font: inherit;
  color: inherit;
  text-align: left;
  cursor: pointer;
}
.machine:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.machine:focus-visible {
  outline: 3px solid var(--blue-bright);
  outline-offset: 2px;
}
.machine__photo {
  flex: none;
  width: 110px;
  align-self: stretch;
  background: var(--gray-50);
  overflow: hidden;
  display: block;
}
.machine__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.machine__body {
  padding: 14px 16px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.machine__brand {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--blue-bright);
  display: block;
  margin-bottom: 4px;
}
.machine__name {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--blue-deep);
  line-height: 1.2;
  margin-bottom: 8px;
  letter-spacing: -.01em;
}
.machine__desc {
  display: block;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--gray-700);
  margin: 0;
}

.machine-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.machine-modal.is-open {
  display: flex;
  animation: mmFade .18s var(--ease);
}
@keyframes mmFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.machine-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 56, 92, .65);
  backdrop-filter: blur(4px);
  cursor: pointer;
}
.machine-modal__panel {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 880px;
  width: 100%;
  max-height: calc(100vh - 48px);
  display: flex;
  animation: mmSlide .22s var(--ease);
}
@keyframes mmSlide {
  from { transform: translateY(12px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.machine-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, .92);
  color: var(--blue-deep);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  box-shadow: var(--shadow-sm);
  transition: background .15s, transform .15s;
}
.machine-modal__close:hover {
  background: #fff;
  transform: scale(1.05);
}
.machine-modal__photo {
  flex: 1 1 55%;
  background: var(--gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 320px;
}
.machine-modal__photo img {
  width: 100%;
  height: 100%;
  max-height: calc(100vh - 48px);
  object-fit: contain;
  display: block;
}
.machine-modal__body {
  flex: 1 1 45%;
  padding: 36px 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  overflow-y: auto;
}
.machine-modal__brand {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--blue-bright);
}
.machine-modal__name {
  font-size: 26px;
  color: var(--blue-deep);
  line-height: 1.2;
  letter-spacing: -.01em;
  margin: 0;
}
.machine-modal__desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-700);
  margin: 0;
}
body.no-scroll {
  overflow: hidden;
}

@media(max-width:1080px) {
  :root {
    --maxw: 960px
  }

  .dbody__grid {
    gap: 44px
  }

  .aside {
    width: 290px
  }

  .hero__grid,
  .about {
    gap: 44px
  }

  .section {
    padding: 72px 0
  }
}

@media(max-width:920px) {
  .container {
    padding: 0 22px
  }

  .hero__grid,
  .about,
  .contact,
  .dbody__grid {
    flex-direction: column;
    gap: 38px
  }

  .hero__grid>div:first-child,
  .hero__card,
  .about>div,
  .contact>div {
    flex: 1 1 auto;
    width: 100%
  }

  .hero__card {
    order: -1
  }

  .aside {
    width: 100%;
    position: static
  }

  .proofbar__grid {
    flex-wrap: wrap
  }

  .proofbar__it {
    flex: 1 1 50%;
    min-width: 180px
  }

  .proofbar__it:nth-child(2) {
    border-right: none
  }

  .pcard {
    width: 100%
  }

  .tgrid,
  .ph-strip {
    flex-direction: column
  }

  .prose>* {
    max-width: none
  }

  .nav {
    display: none;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--gray-100);
    box-shadow: var(--shadow-md);
    padding: 8px
  }

  .nav.is-open {
    display: flex
  }

  .nav a {
    padding: 13px 14px;
    border-radius: 8px
  }

  .nav .btn {
    margin: 8px 0 4px;
    justify-content: center
  }

  .header__social {
    margin-left: 0;
    padding-left: 0;
    border-left: none
  }

  .nav__burger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border: 1px solid var(--gray-200);
    background: #fff;
    cursor: pointer
  }

  .footer__grid {
    flex-wrap: wrap
  }

  .footer__grid>div {
    flex: 1 1 42%
  }

  .machine {
    flex: 1 1 100%;
  }
  .machine-modal__panel {
    flex-direction: column;
    max-height: calc(100vh - 32px);
  }
  .machine-modal__photo {
    flex: 0 0 auto;
    min-height: 260px;
    max-height: 45vh;
  }
  .machine-modal__body {
    flex: 1 1 auto;
    padding: 28px 24px;
  }
  .machine-modal__name {
    font-size: 22px;
  }
  .machine-modal {
    padding: 16px;
  }

  .footer__grid>div:first-child {
    flex: 1 1 100%
  }
}

@media(max-width:600px) {
  .container {
    padding: 0 18px
  }

  .header__social-link {
    width: 40px;
    height: 40px
  }

  .header__social-link svg {
    width: 22px;
    height: 22px
  }

  .header__in {
    height: 64px
  }

  .nav {
    top: 64px
  }

  .hero {
    padding: 52px 0 60px
  }

  .hero__card {
    padding: 32px;
    min-height: auto
  }

  .hero__card img {
    max-width: 230px
  }

  .hero__meta {
    gap: 0 22px;
    row-gap: 16px
  }

  .section {
    padding: 52px 0
  }

  .section--alt {
    padding: 52px 0
  }

  .sec-head {
    margin-bottom: 36px
  }

  .proofbar__it {
    flex: 1 1 100%;
    border-right: none;
    padding: 18px 4px
  }

  .dhero {
    padding: 44px 0 50px
  }

  .dbody {
    padding: 44px 0
  }

  .prose h2 {
    margin-top: 40px
  }

  .prose .lede {
    padding: 18px 20px
  }

  .step {
    padding: 16px 16px;
    gap: 14px
  }

  .ctaband {
    padding: 56px 0
  }

  .footer {
    padding: 48px 0 24px
  }

  .footer__grid>div,
  .footer__grid>div:first-child {
    flex: 1 1 100%
  }

  .about__stats div {
    width: calc(50% - .5px)
  }
}

@media(max-width:380px) {
  .header__right {
    gap: 8px
  }

  .header__social {
    gap: 6px
  }

  .header__social-link {
    width: 34px;
    height: 34px
  }

  .header__social-link svg {
    width: 18px;
    height: 18px
  }

  h1 {
    font-size: 30px
  }

  .hero__meta {
    flex-direction: column;
    gap: 14px
  }

  .btn--lg {
    padding: 15px 22px;
    font-size: 15px
  }

  .hero__ctas .btn,
  .ctaband__btns .btn {
    width: 100%;
    justify-content: center
  }
}

.contact__form {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.flash {
  padding: 12px 18px;
  border-radius: 6px;
  margin-bottom: 20px;
  font-size: 14.5px;
}
.flash--success {
  background: rgba(34, 165, 102, .1);
  color: #178856;
  border-left: 4px solid #22A566;
}
.flash--error {
  background: rgba(220, 53, 69, .1);
  color: #A02532;
  border-left: 4px solid #DC3545;
}

.footer__admin {
  position: absolute;
  right: 0;
  bottom: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: rgba(255, 255, 255, .12);
  transition: color .2s;
  border-radius: 4px;
}
.footer__admin:hover {
  color: rgba(255, 255, 255, .5);
}

.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}
.footer__social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-soft);
  transition: background .2s, color .2s;
  padding: 0;
}
.footer__social a:hover {
  background: rgba(255, 255, 255, .16);
  color: #fff;
}

.ph--photo {
  padding: 0;
  overflow: hidden;
  color: transparent;
  aspect-ratio: 4 / 3;
  position: relative;
}
.ph--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ph--photo .ph__cap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(20, 56, 92, .85), transparent);
  color: #fff;
  font-size: 12px;
  padding: 16px 12px 10px;
}

@media(max-width: 600px) {
  .field-row {
    grid-template-columns: 1fr;
  }
}

.footer__legal {
  font-size: 12.5px;
  margin-bottom: 8px;
  opacity: .75;
}
.footer__legal a {
  color: inherit;
  text-decoration: none;
  transition: opacity .15s;
}
.footer__legal a:hover {
  opacity: 1;
  text-decoration: underline;
}
.footer__legal span {
  margin: 0 6px;
  opacity: .5;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  max-width: 720px;
  margin: 0 auto;
  background: #14385C;
  color: #fff;
  padding: 18px 22px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
  z-index: 9999;
  display: none;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  line-height: 1.5;
}
.cookie-banner.is-visible {
  display: flex;
}
.cookie-banner__text {
  flex: 1;
}
.cookie-banner__text a {
  color: #7EBCCE;
  text-decoration: underline;
}
.cookie-banner__text a:hover {
  color: #fff;
}
.cookie-banner__actions {
  flex: none;
}
.cookie-banner__btn {
  background: #fff;
  color: #14385C;
  border: none;
  padding: 10px 22px;
  border-radius: 6px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: background .15s;
}
.cookie-banner__btn:hover {
  background: #E9ECEE;
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .cookie-banner__btn {
    width: 100%;
  }
}
