.navBg{
     background-color: #22346a;
}

body {
   display: flex;
   flex-direction: column;
   min-height: 100vh;
   margin: 0;
   background-color: #f8f7f4;
   font-family: "Space Mono", monospace;
}

[data-footer] {
   margin-top: auto;
}

[data-navbar] {
   display: block;
   position: relative;
   z-index: 1030;
}

.logo{
   height: 100px;
   width: 100px;
   border: 4px solid #f2b891;
   border-radius: 50%;
}
.logoIn{
   height: 80px;
   width: 80px;
   border: 4px solid #f2b891;
   border-radius: 50%;
}

.site-header {
   padding: 0;
}

.site-header .container {
   width: 100%;
   max-width: 1200px;
   padding: 10px 20px;
}

.site-header-row {
   align-items: center;
   justify-content: center;
   row-gap: 1rem;
}

.brand-logo-col,
.brand-text-col {
   display: flex;
   justify-content: center;
}

.brand-logo-col {
   flex: 0 0 auto;
}

.logo-link {
   display: inline-flex;
   text-decoration: none;
}

.brand-text-col {
   flex-direction: column;
   text-align: center;
}

.header-menu-toggle {
   display: none;
   color: #f2b891;
   width: 36px !important;
   height: 36px !important;
   max-width: none !important;
   padding: 0;
   background: transparent;
   border: none;
   align-items: center;
   justify-content: center;
   flex: 0 0 auto !important;
   flex-basis: auto !important;
   cursor: pointer;
}

.header-menu-toggle svg {
   width: 100%;
   height: 100%;
}

.menu-icon-close {
   display: none;
}

.header-menu-toggle.is-open .menu-icon-open {
   display: none;
}

.header-menu-toggle.is-open .menu-icon-close {
   display: block;
}

.logo {
   height: clamp(84px, 12vw, 120px);
   width: clamp(84px, 12vw, 120px);
   display: flex;
   align-items: center;
   justify-content: center;
   box-sizing: border-box;
   flex-shrink: 0;
}

.logoIn {
   height: calc(100% - 12px);
   width: calc(100% - 12px);
   display: flex;
   align-items: center;
   justify-content: center;
   box-sizing: border-box;
}

.logo-text {
   margin: 0;
   color: #f2b891;
   font-size: clamp(1.4rem, 3vw, 2rem);
   line-height: 1;
}

.brand-title {
   margin: 0;
   color: #f2b891;
   font-size: clamp(1.6rem, 2.4vw, 2rem);
}

.brand-subtitle {
   margin: 0.5rem 0 0;
   color: #f1d8c7;
   font-size: clamp(0.85rem, 1.4vw, 0.95rem);
   letter-spacing: 0.38em;
   white-space: nowrap;
   word-break: break-word;
}

.brand-subtitle-break {
   display: inline;
}

.site-card {
   width: min(100% - 2rem, 1100px);
   margin: 1.5rem auto;
   --bs-card-border-width: 0 !important;
   --bs-card-border-color: transparent !important;
   --bs-card-inner-border-radius: 0 !important;
   --bs-card-border-radius: 0 !important;
   border: none !important;
   box-shadow: none !important;
   background: transparent !important;
   border-radius: 0 !important;
}

.site-content-card {
   margin-top: 0;
}

.site-nav-menu {
   width: 100%;
   max-width: none;
   margin: 0;
   background: rgba(255, 255, 255, 0.97) !important;
   backdrop-filter: blur(8px);
   transition: box-shadow 0.28s ease, background-color 0.28s ease, transform 0.28s ease;
}

.site-nav-menu.is-stuck {
   position: fixed;
   top: 0;
   left: 0;
   right: 0;
   z-index: 3000;
   box-shadow: 0 14px 34px rgba(17, 17, 17, 0.18);
   border-bottom: 1px solid rgba(34, 52, 106, 0.12);
   animation: siteMenuSlideDown 0.28s ease;
}

.site-nav-menu .card-header {
   width: min(100% - 2rem, 1100px);
   margin: 0 auto;
}

@keyframes siteMenuSlideDown {
   from {
      opacity: 0;
      transform: translateY(-14px);
   }

   to {
      opacity: 1;
      transform: translateY(0);
   }
}

.site-card .card-header {
   padding: 1rem;
   background: transparent !important;
   border: none !important;
   box-shadow: none !important;
   border-radius: 0 !important;
}

.site-card .card-body {
   padding: 2rem 1.25rem;
   background: transparent !important;
   border: none !important;
   box-shadow: none !important;
   border-radius: 0 !important;
}

.card-header-pills {
   gap: 0.75rem;
}

.card-header-pills .nav-link {
   padding: 0.65rem 1rem;
   border-radius: 0;
   color: #2f427f;
   font-weight: 700;
   font-size: clamp(1rem, 1.25vw, 1.17rem);
   position: relative;
}

.card-header-pills .nav-link:hover {
   color: #f2b891;
}

.card-header-pills .nav-link::after {
   content: "";
   position: absolute;
   left: 1rem;
   right: 1rem;
   bottom: 0.35rem;
   height: 2px;
   background-color: #f2b891;
   transform: scaleX(0);
   transform-origin: center;
   transition: transform 0.25s ease;
}

.card-header-pills .nav-link:hover::after,
.card-header-pills .nav-link:focus-visible::after,
.card-header-pills .nav-link.active::after {
   transform: scaleX(1);
}

.card-header-pills .nav-link.active {
   background-color: transparent !important;
   color: #f2b891 !important;
   border: none !important;
   box-shadow: none !important;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
   background-color: transparent !important;
   color: #f2b891 !important;
   border: none !important;
   box-shadow: none !important;
}

.site-footer {
   margin-top: 2rem;
   background-color: #000000;
   padding: 34px 20px 28px;
   text-align: center;
}

.site-footer-inner {
   width: min(100%, 1120px);
   margin: 0 auto;
}

.site-footer-kicker {
   margin: 0;
   color: #f2b891;
   font-size: clamp(0.92rem, 1.65vw, 1.5rem);
   font-weight: 700;
   letter-spacing: 0.42em;
}

.site-footer-name {
   margin: 0;
   padding-top: 1rem;
   color: #f2b891;
   font-size: clamp(1.33rem, 2.5vw, 1.92rem);
   font-weight: 700;
}

.site-footer-contacts {
   display: flex;
   justify-content: space-between;
   align-items: center;
   gap: 1.5rem;
   padding-top: 2rem;
}

.site-footer-contact {
   display: inline-flex;
   align-items: center;
   gap: 1rem;
   color: #f1d8c7;
   text-decoration: none;
   font-size: clamp(0.84rem, 1.65vw, 1rem);
   font-weight: 700;
}

.site-footer-icon {
   width: 48px;
   height: 48px;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   border: 2px solid #f2b891;
   border-radius: 50%;
   color: #f2b891;
   flex-shrink: 0;
}

.site-footer-icon svg {
   width: 24px;
   height: 24px;
}

.site-footer-contact-text {
   line-height: 1.2;
}

.brand-image {
   max-width: 100%;
   width: min(180px, 100%);
   height: auto;
}

.about-intro {
   width: min(100% - 2rem, 1100px);
   margin: 0 auto 2rem;
   background: #ffffff;
   padding: clamp(2rem, 4vw, 3rem);
}

.about-intro-inner {
   max-width: 1120px;
   margin: 0 auto;
   text-align: center;
}

.about-intro-title {
   margin: 0;
   color: #22346a;
   font-size: clamp(1rem, 1.8vw, 1.8rem);
   font-weight: 700;
   letter-spacing: 0.32em;
}

.about-intro-copy {
   margin: 1rem 0 0;
   color: #111111;
   font-size: clamp(0.88rem, 1.4vw, 1.35rem);
   line-height: 1.8;
}

.about-intro-copy strong {
   font-weight: 700;
}

.offers-hero {
   width: min(100% - 2rem, 1100px);
   margin: 0 auto 2rem;
   background: #ffffff;
   color: #22346a;
   padding: clamp(2rem, 4vw, 3.5rem);
}

.offers-hero-inner {
   display: grid;
   grid-template-columns: minmax(280px, 1fr) minmax(320px, 1.2fr);
   gap: clamp(2rem, 5vw, 4rem);
   align-items: center;
}

.offers-visual {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: clamp(1rem, 3vw, 2rem);
}

.offers-exclamation {
   order: 2;
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 1.5rem;
   flex-shrink: 0;
}

.offers-exclamation-main {
   width: clamp(44px, 6vw, 76px);
   height: clamp(220px, 36vw, 420px);
   background: #2e4487;
   clip-path: polygon(20% 0, 100% 2%, 62% 100%, 0 98%);
}

.offers-exclamation-dot {
   width: clamp(40px, 5vw, 60px);
   height: clamp(40px, 5vw, 60px);
   background: #2e4487;
   transform: rotate(6deg);
}

.offers-left-copy {
   order: 1;
   margin: 0;
   color: #f2b891;
   font-size: clamp(1.06rem, 2.12vw, 2.15rem);
   font-weight: 400;
   font-style: italic;
   line-height: 1.18;
   letter-spacing: 0.08em;
}

.offers-content {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
}

.offers-title {
   margin: 0;
   color: #22346a;
   font-size: clamp(0.96rem, 1.62vw, 1.6rem);
   font-weight: 700;
   letter-spacing: 0.32em;
   text-align: center;
}

.offers-list {
   display: flex;
   flex-direction: column;
   gap: 1.3rem;
}

.offers-item {
   display: grid;
   grid-template-columns: clamp(60px, 8vw, 90px) 1fr;
   align-items: center;
   column-gap: 0.8rem;
}

.offers-arrow {
   color: #2e4487;
   width: clamp(28px, 3vw, 36px);
   height: clamp(28px, 3vw, 36px);
   display: inline-flex;
   align-items: center;
   justify-content: center;
   align-self: center;
   line-height: 1;
}

.offers-arrow svg {
   width: 100%;
   height: 100%;
}

.offers-text {
   color: #22346a;
   font-size: clamp(0.65rem, 1.12vw, 1.06rem);
   font-weight: 700;
   letter-spacing: 0.2em;
   line-height: 1.3;
}

.offers-text small {
   display: block;
   margin-top: 0.35rem;
   font-size: 0.5em;
   letter-spacing: 0.14em;
}

.offers-process {
   width: min(100% - 2rem, 1100px);
   margin: 0 auto 1.25rem;
   background: #ffffff;
   padding: clamp(1.75rem, 3vw, 2.5rem);
}

.offers-process-inner {
   display: grid;
   grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
   align-items: center;
   gap: 1rem;
}

.offers-process-step {
   display: flex;
   flex-direction: column;
   align-items: center;
   text-align: center;
   gap: 1rem;
}

.offers-process-icon {
   width: clamp(56px, 5vw, 72px);
   height: clamp(56px, 5vw, 72px);
   color: #111111;
}

.offers-process-icon svg {
   width: 100%;
   height: 100%;
}

.offers-process-icon-image {
   width: 100%;
   height: 100%;
   object-fit: contain;
   filter: brightness(0) saturate(100%);
}

.offers-process-label {
   margin: 0;
   color: #111111;
   font-size: clamp(0.65rem, 1.7vw, 1.4rem);
   font-weight: 700;
   letter-spacing: 0.18em;
   line-height: 1.1;
}

.offers-process-arrow {
   width: clamp(28px, 3vw, 42px);
   height: clamp(28px, 3vw, 42px);
   color: #111111;
}

.offers-process-arrow svg {
   width: 100%;
   height: 100%;
}

.offers-development {
   width: min(100% - 2rem, 1100px);
   margin: 0 auto 1rem;
   background: #ffffff;
   padding: clamp(1.25rem, 2.5vw, 2rem);
}

.offers-development-inner {
   max-width: 980px;
   margin: 0 auto;
   text-align: center;
   background: #ffffff;
   padding: clamp(2rem, 4vw, 3rem);
}

.offers-development-title {
   margin: 0;
   color: #111111;
   font-size: clamp(0.85rem, 1.54vw, 1.38rem);
   font-weight: 700;
   letter-spacing: 0.24em;
   line-height: 1.35;
}

.offers-development-copy {
   margin-top: 1.25rem;
   display: flex;
   flex-direction: column;
   gap: 1rem;
}

.offers-development-copy p {
   margin: 0;
   color: #2b2b2b;
   font-size: clamp(0.85rem, 1.54vw, 1.46rem);
   font-weight: 400;
   line-height: 1.9;
}

.offers-development-copy strong {
   color: #22346a;
   font-weight: 700;
}

.machines-section {
   width: min(100% - 2rem, 1100px);
   margin: 0 auto 2rem;
   background: #ffffff;
   color: #111111;
   padding: clamp(2rem, 4vw, 3.5rem);
}

.machines-inner {
   max-width: 920px;
}

.machines-title {
   margin: 0;
   color: #111111;
   font-size: clamp(1.7rem, 3vw, 2.7rem);
   font-weight: 700;
   letter-spacing: 0.34em;
}

.machines-group {
   margin-top: 2.5rem;
}

.machines-subtitle {
   margin: 0 0 1.25rem;
   color: #111111;
   font-size: clamp(1rem, 1.6vw, 1.4rem);
   font-weight: 700;
   letter-spacing: 0.22em;
}

.machines-list {
   margin: 0;
   padding-left: 1.5rem;
   display: flex;
   flex-direction: column;
   gap: 0.9rem;
}

.machines-list li {
   color: #3e3e3e;
   font-size: clamp(0.95rem, 1.35vw, 1.2rem);
   line-height: 1.55;
}

.machines-list-grid {
   display: flex;
   flex-direction: column;
   gap: 1.1rem;
}

.machines-item {
   display: grid;
   grid-template-columns: clamp(60px, 8vw, 90px) 1fr;
   align-items: center;
   column-gap: 0.8rem;
}

.machines-arrow {
   color: #2e4487;
   width: clamp(28px, 3vw, 36px);
   height: clamp(28px, 3vw, 36px);
   display: inline-flex;
   align-items: center;
   justify-content: center;
}

.machines-arrow svg {
   width: 100%;
   height: 100%;
}

.machines-text {
   color: #22346a;
   font-size: clamp(0.84rem, 1.45vw, 1.22rem);
   font-weight: 700;
   line-height: 1.45;
}

.machines-hero {
   width: min(100% - 2rem, 1100px);
   margin: 0 auto 2rem;
   background: #ffffff;
   padding: clamp(2rem, 4vw, 3.5rem);
}

.machines-hero-inner {
   display: grid;
   grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1.1fr);
   gap: clamp(2rem, 5vw, 4rem);
   align-items: center;
}

.machines-hero-visual {
   display: flex;
   align-items: center;
   gap: clamp(1rem, 3vw, 2rem);
}

.machines-hero-accent {
   width: clamp(44px, 6vw, 76px);
   height: clamp(220px, 34vw, 380px);
   background: #2e4487;
   clip-path: polygon(20% 0, 100% 2%, 62% 100%, 0 98%);
   flex-shrink: 0;
}

.machines-hero-title {
   margin: 0;
   color: #22346a;
   font-size: clamp(1.7rem, 3vw, 3rem);
   font-weight: 700;
   letter-spacing: 0.24em;
   line-height: 1.08;
}

.machines-hero-copy {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
}

.machines-hero-copy p {
   margin: 0;
   color: #b98663;
   font-size: clamp(1rem, 1.7vw, 1.5rem);
   line-height: 1.8;
}

.machines-section-secondary {
   margin-top: 0;
}

@media (max-width: 769.98px) {
   .site-header {
      padding: 0;
   }

   .site-header .container {
      width: 100%;
      max-width: none;
      padding: 10px 20px;
   }

   .site-header-row {
      display: flex;
      flex-direction: row;
      flex-wrap: nowrap;
      justify-content: flex-start;
      align-items: center;
      column-gap: 0.85rem;
      margin-left: 0;
      margin-right: 0;
      width: 100%;
   }

   .brand-logo-col,
   .brand-text-col {
      width: auto !important;
      max-width: none;
      flex: 0 0 auto !important;
      flex-basis: auto !important;
   }

   .site-header-row > .header-menu-toggle {
      width: 36px !important;
      max-width: none !important;
      padding-left: 0 !important;
      padding-right: 0 !important;
   }

   .header-menu-toggle {
      display: inline-flex;
      order: 3;
      margin-left: 0.85rem;
      margin-right: 0;
      align-self: center;
   }

   .brand-logo-col {
      order: 1;
   }

   .brand-text-col {
      order: 2;
   }

   .brand-text-col {
      align-items: flex-start;
      text-align: left;
      justify-content: center;
      flex: 1 1 auto !important;
      min-width: 0;
   }

   .logo {
      height: 76px;
      width: 76px;
   }

   .logoIn {
      height: calc(100% - 10px);
      width: calc(100% - 10px);
   }

   .brand-title {
      display: none;
   }

   .brand-subtitle {
      margin: 0;
      font-size: 0.95rem;
      white-space: normal;
      letter-spacing: 0.24em;
      line-height: 1.45;
   }

   .brand-subtitle-break {
      display: block;
   }

   .card-header-pills {
      flex-direction: column;
      align-items: stretch;
   }

   .card-header-pills .nav-item,
   .card-header-pills .nav-link {
      width: 100%;
   }

   .site-nav-menu {
      display: none !important;
      top: 0;
   }

   .site-nav-menu.is-open {
      display: block !important;
   }

   .site-nav-menu.is-stuck {
      position: fixed;
   }

   .site-card .card-body {
      padding: 1.5rem 1rem;
   }

   .site-footer {
      padding: 28px 16px 24px;
   }

   .site-footer-kicker {
      letter-spacing: 0.18em;
      line-height: 1.4;
   }

   .site-footer-name {
      padding-top: 0.75rem;
   }

   .site-footer-contacts {
      flex-direction: column;
      align-items: flex-start;
      padding-top: 1.5rem;
   }

   .site-footer-contact {
      font-size: 1rem;
      text-align: left;
   }

   .offers-hero {
      padding: 1.5rem 1rem;
   }

   .about-intro {
      padding: 1.5rem 1rem;
   }

   .about-intro-title {
      font-size: 1.1rem;
      letter-spacing: 0.18em;
   }

   .about-intro-copy {
      font-size: 0.95rem;
      line-height: 1.7;
   }

   .offers-hero-inner {
      grid-template-columns: 1fr;
      gap: 2rem;
   }

   .offers-visual {
      flex-direction: row;
      gap: 1.25rem;
      align-items: flex-start;
   }

   .offers-exclamation {
      order: 2;
      flex-direction: column;
      align-items: center;
      gap: 0.75rem;
   }

   .offers-left-copy {
      order: 1;
   }

   .offers-exclamation-main {
      width: 34px;
      height: 140px;
   }

   .offers-exclamation-dot {
      width: 28px;
      height: 28px;
      margin-bottom: 0.25rem;
   }

   .offers-left-copy {
      font-size: 1.15rem;
   }

   .offers-title {
      text-align: left;
      letter-spacing: 0.18em;
      font-size: 1.08rem;
   }

   .offers-item {
      grid-template-columns: 40px 1fr;
      column-gap: 0.65rem;
   }

   .offers-arrow {
      width: 24px;
      height: 24px;
   }

   .offers-text {
      font-size: 0.65rem;
      letter-spacing: 0.12em;
   }

   .offers-process {
      padding: 1.25rem 1rem;
   }

   .offers-process-inner {
      grid-template-columns: 1fr;
      gap: 1rem;
   }

   .offers-process-step {
      gap: 0.75rem;
   }

   .offers-process-icon {
      width: 52px;
      height: 52px;
   }

   .offers-process-label {
      font-size: 0.77rem;
      letter-spacing: 0.14em;
   }

   .offers-process-arrow {
      width: 24px;
      height: 24px;
      justify-self: center;
      transform: rotate(90deg);
   }

   .offers-development {
      padding: 1rem;
   }

   .offers-development-title {
      font-size: 0.77rem;
      letter-spacing: 0.14em;
   }

   .offers-development-copy {
      margin-top: 1rem;
      gap: 0.9rem;
   }

   .offers-development-copy p {
      font-size: 0.77rem;
      line-height: 1.75;
   }

   .machines-section {
      padding: 1.5rem 1rem;
   }

   .machines-hero {
      padding: 1.5rem 1rem;
   }

   .machines-hero-inner {
      grid-template-columns: 1fr;
      gap: 1.75rem;
   }

   .machines-hero-visual {
      align-items: flex-start;
   }

   .machines-hero-accent {
      width: 34px;
      height: 150px;
   }

   .machines-hero-title {
      font-size: 1.5rem;
      letter-spacing: 0.16em;
   }

   .machines-hero-copy p {
      font-size: 0.95rem;
      line-height: 1.7;
   }

   .machines-title {
      font-size: 1.5rem;
      letter-spacing: 0.18em;
   }

   .machines-group {
      margin-top: 2rem;
   }

   .machines-subtitle {
      font-size: 0.95rem;
      letter-spacing: 0.14em;
   }

   .machines-list {
      padding-left: 1.2rem;
      gap: 0.75rem;
   }

   .machines-list li {
      font-size: 0.9rem;
   }

   .machines-item {
      grid-template-columns: 40px 1fr;
      column-gap: 0.65rem;
   }

   .machines-arrow {
      width: 24px;
      height: 24px;
   }

   .machines-text {
      font-size: 0.85rem;
      line-height: 1.55;
   }
}
