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

html, body, div, span, object, iframe, figure, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, code, em, img, small, strike, strong, sub, sup, tt, b, u, i, ol, ul, li, fieldset, form, label, table, caption, tbody, tfoot, thead, tr, th, td, main, canvas, embed, footer, header, nav, section, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
     -moz-text-size-adjust: none;
          text-size-adjust: none;
}

footer, header, nav, section, main {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input {
  border-radius: 0;
}

a {
  text-decoration: none;
  color: #000;
}

@font-face {
  font-family: "Noto Sans Armenian";
  src: url("/src/NotoSansArmenian-VariableFont_wdth,wght.ttf") format("truetype");
  font-weight: 100 900;
  font-stretch: 75% 125%;
  font-style: normal;
  font-display: swap;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding-inline: var(--space-5);
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  text-decoration: none;
}

.button:hover,
.button:focus {
  box-shadow: 0 18px 44px rgba(22, 32, 38, 0.1);
}

.button--primary {
  background-color: #f2a91b;
  color: #162026;
}

.button--primary:hover,
.button--primary:focus {
  background-color: #0f3b32;
  color: #fff;
}

.button--secondary {
  border-color: rgba(22, 32, 38, 0.14);
  background-color: #fff;
  color: #162026;
}

.button--secondary:hover,
.button--secondary:focus {
  border-color: rgba(242, 169, 27, 0.48);
  color: #0f3b32;
}

.button--small {
  min-height: 42px;
  padding-inline: var(--space-4);
  font-size: 0.9375rem;
}

.button--full {
  width: 100%;
}

.backer {
  position: fixed;
  right: var(--space-5);
  bottom: var(--space-5);
  z-index: 200;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(15, 59, 50, 0.18);
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.94);
  color: #0f3b32;
  box-shadow: 0 14px 32px rgba(22, 32, 38, 0.16);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(var(--space-2));
  transition: opacity 0.2s ease, transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.backer.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.backer:hover,
.backer:focus {
  border-color: rgba(242, 169, 27, 0.46);
  background-color: #fff;
  color: #f2a91b;
  box-shadow: 0 18px 44px rgba(22, 32, 38, 0.1);
}

.backer:focus-visible {
  outline: 2px solid rgba(242, 169, 27, 0.42);
  outline-offset: var(--space-1);
}

.backer__icon {
  width: 22px;
  height: 22px;
  display: block;
  fill: currentColor;
}

@media (max-width: 768px) {
  .backer {
    right: var(--space-4);
    bottom: var(--space-4);
    width: 48px;
    height: 48px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .backer {
    transition: none;
    transform: none;
  }
}
.card, .proof-card,
.operation-card,
.audience-card,
.problem-card,
.home-benefit-card,
.home-operations__card {
  display: grid;
  gap: var(--space-3);
  align-content: start;
  padding: var(--space-6);
  border-radius: 8px;
  background-color: #fff;
  border: 1px solid rgba(22, 32, 38, 0.14);
  transition: box-shadow 0.2s ease;
}

.card:hover, .proof-card:hover,
.operation-card:hover,
.audience-card:hover,
.problem-card:hover,
.home-benefit-card:hover,
.home-operations__card:hover {
  box-shadow: 0 18px 44px rgba(22, 32, 38, 0.1);
}

.card--surface {
  background-color: #e9efec;
  border-color: rgba(255, 255, 255, 0.16);
}

.card--accent {
  background: linear-gradient(135deg, #0f3b32, #162026);
  border-color: rgba(242, 169, 27, 0.2);
  border-radius: 12px;
}
.card--accent > .card__text, .card--accent .card__title, .card--accent .card__value {
  color: #fff;
}

.card--transparent {
  background-color: rgba(71, 71, 71, 0.23);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
  backdrop-filter: blur(4px);
  border-radius: 12px;
  -webkit-backdrop-filter: blur(4px);
}
.card--transparent > .card__title, .card--transparent .card__text, .card--transparent .card__value {
  color: #fff;
}

.card__title {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3;
  color: #162026;
}

.card__text {
  color: rgba(22, 32, 38, 0.76);
  font-size: 0.9375rem;
  line-height: 1.5;
}

.card__value {
  color: #0f3b32;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2;
}

.card--special, .card--special-accent, .card--special-light {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  padding: var(--space-6);
  border-top: var(--space-1) solid rgba(242, 169, 27, 0.72);
  min-height: 320px;
}

.card--special-accent {
  background: linear-gradient(180deg, rgba(22, 32, 38, 0.92), rgba(15, 59, 50, 0.82));
  color: #fff;
}
.card--special-accent > .card__text, .card--special-accent .card__title {
  color: #fff;
}

.card__list {
  display: grid;
  padding-inline-start: 8px;
}

@media (max-width: 768px) {
  .card__list {
    padding-inline-start: 0;
  }
}
.card__list li {
  display: grid;
  grid-template-columns: var(--space-4) minmax(0, 1fr);
  gap: var(--space-3);
  align-items: start;
}

.card__list li::before {
  content: "";
  width: var(--space-2);
  height: var(--space-2);
  margin-block-start: var(--space-2);
  border-radius: 50%;
  background-color: #f2a91b;
}

.card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: auto;
}

.card__meta span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding-inline: var(--space-3);
  border: 1px solid rgba(242, 169, 27, 0.18);
  border-radius: 8px;
  background-color: #fff4d8;
  color: #0f3b32;
  font-size: 0.875rem;
  font-weight: 600;
}

.card--special-accent .card__list {
  color: rgba(255, 255, 255, 0.78);
}

.card--special-accent .card__meta span {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.16);
  background-color: rgba(255, 255, 255, 0.1);
}

.section {
  padding-block: var(--section-padding);
}

.container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--space-4);
}

.section__inner {
  display: grid;
  gap: var(--space-7);
}

.section-heading {
  display: grid;
  gap: var(--space-4);
  max-width: 760px;
}

.section-heading--wide {
  max-width: 920px;
}

.section-heading__eyebrow,
.proof__eyebrow,
.cta__eyebrow {
  color: #f2a91b;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: uppercase;
}

.section-heading__title,
.proof__title,
.cta__title,
.home-cta__title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.08;
  font-weight: 700;
}

.section-heading__text,
.proof__text,
.cta__text,
.home-cta__text,
.home-hero__text {
  color: rgba(22, 32, 38, 0.76);
  font-size: 1.0625rem;
  line-height: 1.7;
}

.advantage-card__number {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: #f1ab18;
  margin-bottom: 20px;
}

.advantages-section {
  padding: 120px 0;
  background: #f5f5f3;
}
.advantages-section__inner {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.advantages-section__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.advantages-section .advantages-section__text {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  grid-column: 1;
}
.advantages-section .section-heading__eyebrow {
  margin-bottom: 25px;
}
.advantages-section .section-heading__title {
  margin-bottom: 30px;
  line-height: 1.1;
  max-width: 500px;
}
.advantages-section .section-heading__text {
  max-width: 450px;
}
.advantages-section__media {
  overflow: hidden;
  height: 100%;
  grid-column: 2;
  justify-self: stretch;
  align-self: start;
}
.advantages-section__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: 0.6s;
}
.advantages-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.advantage-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 25px;
  transition: 0.4s;
  min-height: 200px;
}
.advantage-card .card__title {
  margin-bottom: 15px;
}

@media (max-width: 992px) {
  .advantages-section {
    padding: 80px 0;
  }
  .advantages-section__inner {
    gap: 30px;
  }
  .advantages-section__content {
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: stretch;
  }
  .advantages-section__media {
    grid-column: auto;
    height: 320px;
  }
  .advantages-section__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .advantage-card {
    padding: 24px;
    min-height: auto;
    border-radius: 20px;
  }
  .advantage-card .card__title {
    margin-bottom: 12px;
  }
  .advantage-card__number {
    font-size: 40px;
    margin-bottom: 16px;
  }
}
@media (max-width: 600px) {
  .advantages-section {
    padding: 48px 0;
  }
  .advantages-section__inner {
    gap: 24px;
  }
  .advantages-section__content {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .advantages-section__media {
    height: 220px;
  }
  .advantages-section__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .advantage-card {
    padding: 18px;
    border-radius: 16px;
  }
  .advantage-card .card__title {
    font-size: 1rem;
    margin-bottom: 10px;
  }
  .advantage-card__number {
    font-size: 32px;
    margin-bottom: 12px;
  }
  .section-heading__title {
    margin-bottom: 16px;
    font-size: 24px;
    max-width: 100%;
  }
  .section-heading__text {
    max-width: 100%;
  }
  .advantages-section__media img {
    -o-object-position: center;
       object-position: center;
  }
}
body {
  font-family: "Segoe UI", Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #162026;
  background-color: #f4f6f3;
}

html[lang=hy] body,
html[lang=hy] input,
html[lang=hy] button,
html[lang=hy] textarea,
html[lang=hy] select,
html[lang=hy] .diagram-label,
html[lang=hy] .diagram-value {
  font-family: "Noto Sans Armenian", "Segoe UI", Inter, Arial, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

h1 {
  font-size: 50px;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 20px;
}

p {
  margin: 0;
}

a {
  color: #f2a91b;
  text-decoration: underline;
  transition: color 0.2s ease;
  font-weight: 700;
}

a:hover,
a:focus {
  color: #0f3b32;
}

ul,
ol {
  margin: 0;
  padding-inline-start: 1.5rem;
}

@media (max-width: 768px) {
  ul,
  ol {
    padding-inline-start: 0;
  }
}
li {
  margin-bottom: 0.75rem;
}

img,
svg {
  display: block;
}

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

strong {
  font-weight: 700;
}

.text-muted {
  color: rgba(22, 32, 38, 0.76);
}

.text-secondary {
  color: rgba(22, 32, 38, 0.62);
}

.text-accent {
  color: #f2a91b;
}

.text-white {
  color: #fff;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.form-field {
  display: grid;
  gap: var(--space-2);
}

.form-label {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #162026;
}

.form-input,
.form-textarea,
.form-select {
  padding: var(--space-3);
  border: 1px solid rgba(22, 32, 38, 0.14);
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.5;
  background-color: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: #f2a91b;
  box-shadow: 0 0 0 3px rgba(242, 169, 27, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-select {
  cursor: pointer;
}

.form-group {
  padding: 16px;
  display: grid;
  gap: var(--space-4);
}

.form-actions {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.form-field[data-form-honeypot] {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.form-error {
  display: block;
  min-height: 20px;
  margin-top: var(--space-1);
  color: #f56565;
  font-size: 0.875rem;
  line-height: 1.25;
}
.form-error:empty {
  display: none;
}

.form-input.has-error,
.form-textarea.has-error,
.form-field.is-invalid input[type=checkbox] {
  border-color: #f56565;
  background-color: #fff5f5;
}

.form-input.has-error:focus,
.form-textarea.has-error:focus {
  box-shadow: 0 0 0 3px rgba(245, 101, 101, 0.1);
}

.form-status {
  display: block;
  min-height: 24px;
  margin-top: var(--space-4);
  padding: var(--space-3);
  border-radius: 4px;
  font-size: 0.9375rem;
  line-height: 1.5;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.form-status:empty {
  display: none;
}
.form-status--success {
  display: block;
  opacity: 1;
  background-color: #c6f6d5;
  color: #22543d;
  border: 1px solid #9ae6b4;
}
.form-status--error {
  display: block;
  opacity: 1;
  background-color: #fed7d7;
  color: #742a2a;
  border: 1px solid #fc8181;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(0) translateX(0);
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

[data-reveal=fade-up] {
  transform: translateY(40px);
}

[data-reveal=fade-down] {
  transform: translateY(-40px);
}

[data-reveal=fade-left] {
  transform: translateX(40px);
}

[data-reveal=fade-right] {
  transform: translateX(-40px);
}

@media (max-width: 768px) {
  [data-reveal=fade-left],
  [data-reveal=fade-right] {
    transform: translateY(40px);
  }
}
[data-reveal].reveal-active {
  opacity: 1;
  transform: translateY(0) translateX(0);
}

[data-reveal][data-reveal-index="1"] {
  transition-delay: 0ms;
}
[data-reveal][data-reveal-index="2"] {
  transition-delay: 50ms;
}
[data-reveal][data-reveal-index="3"] {
  transition-delay: 100ms;
}
[data-reveal][data-reveal-index="4"] {
  transition-delay: 150ms;
}
[data-reveal][data-reveal-index="5"] {
  transition-delay: 200ms;
}
[data-reveal][data-reveal-index="6"] {
  transition-delay: 250ms;
}
[data-reveal][data-reveal-index="7"] {
  transition-delay: 300ms;
}
[data-reveal][data-reveal-index="8"] {
  transition-delay: 350ms;
}
[data-reveal][data-reveal-index="9"] {
  transition-delay: 400ms;
}
[data-reveal][data-reveal-index="10"] {
  transition-delay: 450ms;
}
[data-reveal][data-reveal-index="11"] {
  transition-delay: 500ms;
}
[data-reveal][data-reveal-index="12"] {
  transition-delay: 550ms;
}
[data-reveal][data-reveal-index="13"] {
  transition-delay: 600ms;
}
[data-reveal][data-reveal-index="14"] {
  transition-delay: 650ms;
}
[data-reveal][data-reveal-index="15"] {
  transition-delay: 700ms;
}
[data-reveal][data-reveal-index="16"] {
  transition-delay: 750ms;
}
[data-reveal][data-reveal-index="17"] {
  transition-delay: 800ms;
}
[data-reveal][data-reveal-index="18"] {
  transition-delay: 850ms;
}
[data-reveal][data-reveal-index="19"] {
  transition-delay: 900ms;
}
[data-reveal][data-reveal-index="20"] {
  transition-delay: 950ms;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    animation: none;
    transition: none;
    opacity: 1;
    transform: none !important;
  }
}
.page--maintenance {
  min-height: 100vh;
  background-color: #f4f6f3;
}

.section--maintenance {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding-block: var(--space-5);
  background-color: #f4f6f3;
  background-image: url("../graphics/png/maintenance-background.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.maintenance__inner {
  gap: var(--space-6);
}

.maintenance__top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.maintenance__brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.maintenance__logo {
  display: block;
  width: 104px;
  height: auto;
}

.maintenance__controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--space-3);
  flex-wrap: wrap;
  flex-shrink: 0;
  min-width: 0;
}

.maintenance__admin-button,
.maintenance__lang {
  flex-shrink: 0;
}

.maintenance__admin-button {
  position: absolute;
  right: 0;
  padding: 1rem;
  margin: 5rem;
  background-color: #f2a91b;
  color: #fff;
}

.maintenance__auth-backdrop {
  position: fixed;
  inset: 0;
  z-index: 110;
  background-color: rgba(22, 32, 38, 0.36);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.maintenance__auth-backdrop[hidden] {
  display: none;
}

.maintenance__auth-drawer {
  position: fixed;
  inset-block: 0;
  inset-inline-end: 0;
  z-index: 1000;
  display: grid;
  width: min(100%, 440px);
  padding: var(--space-4);
  pointer-events: none;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.2s ease, visibility 0.2s ease;
}

.page--maintenance.is-auth-drawer-open .maintenance__auth-drawer {
  pointer-events: auto;
  transform: translateX(0);
  visibility: visible;
}

.maintenance__auth {
  width: 100%;
  max-height: 100%;
  gap: var(--space-5);
  overflow: auto;
  border-color: rgba(15, 59, 50, 0.12);
  box-shadow: 0 18px 44px rgba(22, 32, 38, 0.1);
}

.maintenance__auth-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-4);
}

.maintenance__auth-heading,
.maintenance__auth-form {
  display: grid;
}

.maintenance__auth-heading {
  gap: var(--space-2);
}

.maintenance__auth-form {
  gap: var(--space-4);
}

.maintenance__auth-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--space-6);
  height: var(--space-6);
  border: 1px solid rgba(22, 32, 38, 0.14);
  border-radius: 8px;
  background-color: #fff;
  color: #162026;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.maintenance__auth-close:hover,
.maintenance__auth-close:focus {
  border-color: rgba(242, 169, 27, 0.48);
  color: #0f3b32;
  box-shadow: 0 18px 44px rgba(22, 32, 38, 0.1);
}

.maintenance__auth-title {
  color: #162026;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.12;
}

.maintenance__auth-text {
  color: rgba(22, 32, 38, 0.76);
  font-size: 1rem;
  line-height: 1.65;
}

.maintenance__auth-error {
  color: #b84a32;
  font-size: 0.9375rem;
  line-height: 1.45;
}

.maintenance__auth-error[hidden] {
  display: none;
}

.maintenance__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.72fr);
  gap: var(--space-7);
  align-items: center;
}

.maintenance__content {
  display: grid;
  gap: var(--space-5);
  min-width: 0;
}

.maintenance__title {
  max-width: 820px;
  color: #162026;
  font-size: clamp(2.5rem, 4.6vw, 4rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.04;
}

.maintenance__text {
  max-width: 680px;
  color: rgba(22, 32, 38, 0.76);
  font-size: 1.0625rem;
  line-height: 1.7;
}

.maintenance__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.maintenance__aside {
  display: grid;
  gap: var(--space-4);
  min-width: 0;
}

.maintenance__card {
  gap: var(--space-4);
  border-color: rgba(15, 59, 50, 0.12);
  box-shadow: 0 18px 44px rgba(22, 32, 38, 0.1);
}

.maintenance__card--status {
  border-top: var(--space-1) solid rgba(242, 169, 27, 0.78);
}

.maintenance__card--accent {
  background-color: #162026;
  color: #fff;
}

.maintenance__card--accent .maintenance__card-label,
.maintenance__card--accent .maintenance__card-note {
  color: rgba(255, 255, 255, 0.82);
}

.maintenance__card-label,
.maintenance__contact-label {
  color: #f2a91b;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
}

.maintenance__card-title {
  font-size: 1.25rem;
  line-height: 1.28;
}

.maintenance__card-text,
.maintenance__card-note {
  color: rgba(22, 32, 38, 0.76);
  line-height: 1.65;
}

.maintenance__contact-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
}

.maintenance__contact-item {
  display: grid;
  gap: var(--space-1);
  min-width: 0;
  color: #162026;
}

.maintenance__contact-value {
  color: #0f3b32;
  font-weight: 600;
  line-height: 1.45;
  overflow-wrap: anywhere;
  transition: color 0.2s ease;
}

.maintenance__contact-item:hover .maintenance__contact-value,
.maintenance__contact-item:focus .maintenance__contact-value {
  color: #f2a91b;
}

.maintenance__end {
  color: rgba(22, 32, 38, 0.62);
  font-size: 0.875rem;
  line-height: 1.45;
}

@media (max-width: 1024px) {
  .maintenance__layout {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  .maintenance__title {
    max-width: 760px;
    font-size: clamp(2.25rem, 7vw, 4rem);
  }
}
@media (max-width: 768px) {
  .section--maintenance {
    align-items: start;
    background-image: linear-gradient(180deg, rgba(244, 246, 243, 0.98), rgba(244, 246, 243, 0.94)), url("../graphics/png/maintenance-background.png");
    background-position: 64% center;
  }
  .maintenance__inner {
    gap: var(--space-6);
  }
  .maintenance__top {
    align-items: flex-start;
  }
  .maintenance__logo {
    width: 96px;
  }
  .maintenance__contact-list {
    grid-template-columns: 1fr;
  }
  .maintenance__actions {
    flex-direction: column;
    align-items: stretch;
  }
}
@media (max-width: 375px) {
  .maintenance__top {
    flex-direction: column;
  }
  .maintenance__controls {
    align-self: stretch;
    justify-content: space-between;
  }
  .maintenance__lang {
    justify-content: flex-start;
  }
  .maintenance__auth-drawer {
    padding: var(--space-4);
  }
  .maintenance__auth {
    padding: var(--space-4);
  }
  .maintenance__card {
    padding: var(--space-4);
  }
  .maintenance__title {
    font-size: 2.25rem;
  }
}
.error-page {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 50px 0;
  color: #fff;
  background: radial-gradient(circle at 20% 30%, rgba(0, 185, 130, 0.12), transparent 55%), radial-gradient(circle at 80% 70%, rgba(242, 169, 27, 0.1), transparent 60%), linear-gradient(180deg, #061412 0%, #081d1a 100%);
}
.error-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../graphics/noise.png");
  opacity: 0.04;
  pointer-events: none;
}
.error-page__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  padding: 60px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  z-index: 2;
}
.error-page__content {
  max-width: 500px;
}
.error-page__number {
  font-size: 140px;
  font-weight: 800;
  line-height: 1;
  color: rgba(242, 169, 27, 0.95);
  margin-bottom: 10px;
  position: relative;
}
.error-page__help {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.error-page__help-title {
  font-size: 20px;
  margin-bottom: 15px;
  color: #fff;
}
.error-page__contact {
  margin-top: 35px;
  padding: 25px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.error-page__contact h3 {
  margin-bottom: 5px;
  color: #fff;
  font-size: 20px;
}
.error-page__contact a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}
.error-page__contact a:hover {
  color: #f2a91b;
}
.error-page__contact-row {
  display: flex;
  align-items: center;
  gap: 20px;
}
.error-page__title {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #fff;
}
.error-page__text {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 32px;
}
.error-page__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.error-page__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.error-page__visual img {
  display: block;
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 20px;
  opacity: 0.9;
  animation: softFloat 5s ease-in-out infinite;
}
@keyframes softFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-40px);
  }
}

@media (max-width: 992px) {
  .error-page {
    padding: 100px 0;
  }
  .error-page__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .error-page__content {
    margin: 0 auto;
  }
  .error-page__actions {
    justify-content: center;
  }
  .error-page__number {
    font-size: 110px;
  }
  .error-page__title {
    font-size: 34px;
  }
  .error-page__visual img {
    max-width: 500px;
  }
  .error-page__contact-row {
    display: flex;
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .error-page {
    padding: 80px 0;
  }
  .error-page__inner {
    padding: 30px;
  }
  .error-page__number {
    font-size: 76px;
  }
  .error-page__title {
    font-size: 26px;
  }
  .error-page__text {
    font-size: 15px;
  }
  .error-page__actions {
    flex-direction: column;
  }
}
.footer {
  background: radial-gradient(circle at 16% 0%, rgba(47, 139, 99, 0.16), rgba(47, 139, 99, 0) 34%), linear-gradient(180deg, rgba(242, 169, 27, 0.12) 0%, rgba(15, 59, 50, 0) 48%), #162026;
  color: #fff;
  padding: var(--space-7) 0 var(--space-5);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer__inner {
  width: min(100%, 1200px);
  margin: 0 auto;
  padding-inline: 24px;
  display: grid;
  gap: var(--space-5);
}

.footer__main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 0.36fr) minmax(220px, 0.28fr);
  gap: var(--space-4);
  align-items: stretch;
  padding: var(--space-6);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)), rgba(255, 255, 255, 0.03);
}

.footer__brand {
  display: grid;
  gap: var(--space-4);
  align-content: start;
  justify-items: start;
  max-width: 640px;
  min-width: 0;
}

.footer__logo-link {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  max-width: 100%;
  padding: var(--space-3);
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.96);
  transition: opacity 0.2s ease, background-color 0.2s ease;
}

.footer__logo-link:hover,
.footer__logo-link:focus {
  opacity: 0.86;
}

.footer__text {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9375rem;
  line-height: 1.55;
}

.footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.footer__badge {
  padding: var(--space-1) var(--space-2);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.25;
}

.footer__nav,
.footer__contact {
  display: grid;
  gap: var(--space-4);
  align-content: start;
  padding: var(--space-4);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.06);
}

.footer__nav {
  justify-self: stretch;
  width: 100%;
}

.footer__contact {
  justify-self: stretch;
  min-width: 0;
}

.footer__nav-title {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: uppercase;
}

.footer__contact-list {
  display: grid;
  gap: var(--space-3);
}

.footer__contact-item {
  display: grid;
  gap: var(--space-1);
  min-width: 0;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.footer__contact-label {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.35;
  text-transform: uppercase;
}

.footer__contact-value {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.45;
  overflow-wrap: anywhere;
  transition: color 0.2s ease;
}

.footer__contact-item:hover .footer__contact-value,
.footer__contact-item:focus .footer__contact-value {
  color: #fff;
}

.footer__messengers {
  display: none !important;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.footer__messenger {
  display: none !important;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.footer__messenger:hover,
.footer__messenger:focus {
  border-color: rgba(255, 255, 255, 0.28);
  background-color: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.footer__messenger-icon {
  display: block;
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-1);
  padding-inline-start: 0;
}

.footer__list-item {
  margin-bottom: 0;
}

.footer__list--sections {
  grid-template-columns: minmax(0, 1fr);
}

.footer__list--pages {
  padding-block-start: var(--space-3);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__link {
  text-decoration: none;
  display: block;
  padding-block: var(--space-1);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9375rem;
  line-height: 1.45;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.footer__link:hover,
.footer__link:focus {
  color: rgba(255, 255, 255, 0.94);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  padding-block-start: var(--space-4);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer__copy,
.footer__note {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.875rem;
  line-height: 1.45;
}

.footer__note {
  text-align: right;
}

@media (max-width: 1024px) {
  .footer__main {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.72fr);
    gap: var(--space-5);
  }
  .footer__brand {
    grid-column: 1/-1;
    max-width: 720px;
  }
  .footer__nav,
  .footer__contact {
    justify-self: stretch;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .footer {
    padding: var(--space-5) 0 var(--space-4);
  }
  .footer__inner {
    gap: var(--space-3);
  }
  .footer__main {
    grid-template-columns: minmax(0, 1fr);
    padding: var(--space-5);
    gap: var(--space-4);
  }
  .footer__brand {
    grid-column: auto;
    gap: var(--space-3);
  }
  .footer__logo-link {
    padding: var(--space-2);
  }
  .footer__text {
    font-size: 0.875rem;
    line-height: 1.45;
  }
  .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: var(--space-2);
    padding-block-start: var(--space-3);
  }
  .footer__note {
    text-align: left;
  }
}
@media (max-width: 375px) {
  .footer__main {
    grid-template-columns: minmax(0, 1fr);
    padding: var(--space-4);
  }
  .footer__brand {
    grid-column: auto;
  }
  .footer__nav,
  .footer__contact {
    width: 100%;
  }
  .footer__list--sections {
    padding-inline-start: 0;
  }
}
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  color: #162026;
  border-bottom: 1px solid rgba(22, 32, 38, 0.14);
  padding: 16px 0;
}

.header__inner {
  width: min(100%, 1200px);
  margin: 0 auto;
  padding-inline: 24px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header.is-menu-open {
  position: sticky;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(22, 32, 38, 0.14);
  color: #162026;
}

.header__brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  color: inherit;
  text-decoration: none;
  border-radius: 8px;
  transition: opacity 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.brand-lockup:hover,
.brand-lockup:focus {
  opacity: 0.9;
}

.brand-lockup:focus-visible {
  outline: 2px solid rgba(242, 169, 27, 0.42);
  outline-offset: 2px;
}

.brand-logo {
  display: block;
  flex: 0 0 auto;
  width: clamp(156px, 14vw, 184px);
  max-width: 100%;
}

.brand-logo__image {
  display: block;
  width: 100%;
  height: auto;
}

.brand-logo--footer {
  width: min(100%, 232px);
}

.brand-logo--small {
  width: 48px;
  aspect-ratio: 1;
}

.header__nav {
  min-width: 0;
}

.header__nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin: 0;
  padding-inline-start: 0;
  list-style: none;
}

.header__nav-item {
  margin-bottom: 0;
}

.header__nav-link {
  color: #162026;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.header__nav-link--accent {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(242, 169, 27, 0.16), rgba(255, 244, 216, 0.92));
  box-shadow: inset 0 0 0 1px rgba(242, 169, 27, 0.32);
  color: #0f3b32;
  font-weight: 700;
}

.header__nav-link--accent::after {
  content: "";
  position: absolute;
  inset-inline: 12px;
  inset-block-end: 4px;
  height: 3px;
  border-radius: 999px;
  background-color: #f2a91b;
  transition: inset-inline 0.2s ease, background-color 0.2s ease;
}

.header__controls {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header__menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(22, 32, 38, 0.14);
  border-radius: 8px;
  background-color: #fff;
  color: #162026;
  cursor: pointer;
  position: relative;
  z-index: 130;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.header__menu-toggle:hover,
.header__menu-toggle:focus {
  border-color: rgba(242, 169, 27, 0.55);
  color: #f2a91b;
}

.header__menu-toggle:focus-visible,
.mobile-menu__link:focus-visible,
.mobile-menu__cta:focus-visible {
  outline: 2px solid rgba(242, 169, 27, 0.42);
  outline-offset: 2px;
}

.header__menu-icon {
  position: relative;
  display: block;
  width: 22px;
  height: 14px;
}

.header__menu-icon::before,
.header__menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background-color: currentColor;
  transition: top 0.2s ease, transform 0.2s ease;
}

.header__menu-icon::before {
  top: 0;
}

.header__menu-icon::after {
  top: 12px;
}

.header__menu-toggle[aria-expanded=true] .header__menu-icon::before {
  top: 6px;
  transform: rotate(45deg);
}

.header__menu-toggle[aria-expanded=true] .header__menu-icon::after {
  top: 6px;
  transform: rotate(-45deg);
}

.header__menu-backdrop,
.header__menu-drawer {
  display: none;
}

.header__lang {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header__lang-button {
  border: 1px solid rgba(22, 32, 38, 0.14);
  border-radius: 4px;
  background-color: #fff;
  color: #162026;
  padding: 8px 12px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.header__lang-button:hover,
.header__lang-button:focus {
  border-color: rgba(242, 169, 27, 0.55);
  color: #f2a91b;
}

.header__lang-button.is-active {
  background-color: #f2a91b;
  border-color: #f2a91b;
  color: #fff;
}

.header__nav-link:hover,
.header__nav-link:focus {
  color: #f2a91b;
}

.header__nav-link--accent:hover,
.header__nav-link--accent:focus {
  background-color: #fff4d8;
  color: #162026;
}

.header__nav-link--accent:hover::after,
.header__nav-link--accent:focus::after {
  inset-inline: 8px;
}

.page--home .header {
  position: absolute;
  inset-block-start: 0;
  inset-inline: 0;
  background-color: transparent;
  backdrop-filter: none;
  border-bottom: 0;
  color: #fff;
}
.page--home .header::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(22, 32, 38, 0.46), rgba(22, 32, 38, 0));
}
.page--home .brand-lockup {
  padding: var(--space-2) var(--space-3);
  background-color: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
}
.page--home .header__nav-link {
  color: rgba(255, 255, 255, 0.82);
}
.page--home .header__nav-link--accent {
  background: linear-gradient(180deg, rgba(242, 169, 27, 0.98), rgba(242, 169, 27, 0.82));
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14), inset 0 0 0 1px rgba(255, 255, 255, 0.28);
  color: #162026;
}
.page--home .header__nav-link--accent::after {
  background-color: #162026;
}
.page--home .header__menu-toggle {
  border-color: rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.page--home .header__menu-toggle:hover,
.page--home .header__menu-toggle:focus {
  border-color: rgba(255, 255, 255, 0.36);
  background-color: rgba(255, 255, 255, 0.16);
  color: #fff;
}
.page--home .header__nav-link:hover,
.page--home .header__nav-link:focus {
  color: #fff;
}
.page--home .header__nav-link--accent:hover,
.page--home .header__nav-link--accent:focus {
  background: #fff;
  color: #162026;
}
.page--home .header__cta.button--primary {
  background-color: #f2a91b;
  color: #162026;
}
.page--home .header__cta.button--primary:hover,
.page--home .header__cta.button--primary:focus {
  background-color: #fff;
  color: #162026;
}
.page--home .header__lang-button {
  border-color: rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.page--home .header__lang-button:hover,
.page--home .header__lang-button:focus {
  border-color: rgba(255, 255, 255, 0.36);
  background-color: rgba(255, 255, 255, 0.16);
  color: #fff;
}
.page--home .header__lang-button.is-active {
  border-color: #fff;
  background-color: #fff;
  color: #0f3b32;
}
.page--home .header.is-menu-open .header__menu-toggle {
  border-color: rgba(22, 32, 38, 0.14);
  background-color: #fff;
  color: #162026;
}

@media (max-width: 1024px) {
  .header__cta {
    display: none;
  }
}
@media (max-width: 768px) {
  .header {
    padding: 12px 0;
  }
  .brand-logo--header {
    width: 150px;
  }
  .header__inner {
    align-items: center;
    gap: 16px;
  }
  .header__nav {
    display: none;
  }
  .header__controls {
    margin-inline-start: auto;
    gap: 12px;
  }
  .header__cta {
    display: none;
  }
  .header__menu-toggle {
    display: inline-flex;
  }
  .header__menu-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 110;
    background-color: rgba(22, 32, 38, 0.32);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
  }
  .header__menu-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
  }
  .header__menu-drawer {
    position: absolute;
    inset-block-start: calc(100% + 8px);
    inset-inline: 24px;
    z-index: 120;
    display: grid;
    gap: 16px;
    max-height: calc(100dvh - 96px);
    padding: 16px;
    overflow-y: auto;
    border: 1px solid rgba(22, 32, 38, 0.14);
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 44px rgba(22, 32, 38, 0.1);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .header__menu-drawer.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .mobile-menu__list {
    display: grid;
    gap: 8px;
    margin: 0;
    padding-inline-start: 0;
    list-style: none;
  }
  .mobile-menu__item {
    margin-bottom: 0;
  }
  .mobile-menu__link {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 12px 16px;
    border-radius: 8px;
    color: #162026;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
  }
  .mobile-menu__link:hover,
  .mobile-menu__link:focus {
    background-color: #fff4d8;
    color: #0f3b32;
  }
  .mobile-menu__link--accent {
    position: relative;
    background-color: #fff4d8;
    box-shadow: inset 0 0 0 1px rgba(242, 169, 27, 0.32);
    color: #0f3b32;
  }
  .mobile-menu__link--accent::after {
    content: "";
    position: absolute;
    inset-inline: 16px;
    inset-block-end: 8px;
    height: 3px;
    border-radius: 999px;
    background-color: #f2a91b;
  }
  .mobile-menu__cta {
    margin-top: 8px;
  }
  .page--home .header {
    position: sticky;
    background-color: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(22, 32, 38, 0.14);
    color: #162026;
  }
  .page--home .header::before {
    content: none;
  }
  .page--home .brand-lockup {
    padding: 0;
    background-color: transparent;
    box-shadow: none;
  }
  .page--home .header__nav-link {
    color: #162026;
  }
  .page--home .header__nav-link:hover,
  .page--home .header__nav-link:focus {
    color: #f2a91b;
  }
  .page--home .header__lang-button {
    border-color: rgba(22, 32, 38, 0.14);
    background-color: #fff;
    color: #162026;
  }
  .page--home .header__lang-button:hover,
  .page--home .header__lang-button:focus {
    border-color: rgba(242, 169, 27, 0.55);
    background-color: #fff;
    color: #f2a91b;
  }
  .page--home .header__lang-button.is-active {
    border-color: #f2a91b;
    background-color: #f2a91b;
    color: #fff;
  }
  .page--home .header__menu-toggle {
    border-color: rgba(22, 32, 38, 0.14);
    background-color: #fff;
    color: #162026;
  }
  .page--home .header__menu-toggle:hover,
  .page--home .header__menu-toggle:focus {
    border-color: rgba(242, 169, 27, 0.55);
    background-color: #fff;
    color: #f2a91b;
  }
}
@media (max-width: 375px) {
  .header__controls {
    gap: 8px;
  }
  .brand-logo--header {
    width: 136px;
  }
  .header__lang-button {
    padding-inline: 8px;
  }
  .header__menu-drawer {
    inset-inline: 16px;
  }
}
@media (max-width: 480px) {
  .header__inner {
    gap: var(--space-2);
    padding-inline: var(--space-3);
  }
  .brand-logo--header {
    width: 42px;
  }
  .header__controls {
    gap: var(--space-2);
    flex: 0 0 auto;
  }
  .header__lang {
    gap: var(--space-1);
  }
  .header__lang-button {
    min-height: 38px;
    padding-inline: var(--space-2);
  }
  .header__menu-toggle {
    width: 44px;
    height: 44px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .header__menu-backdrop,
  .header__menu-drawer,
  .header__menu-icon::before,
  .header__menu-icon::after {
    transition: none;
  }
}
:root {
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 80px;
  --section-padding: 80px;
  --section-padding-compact: 64px;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  min-width: 320px;
  overflow-x: hidden;
}

.page-content {
  overflow: hidden;
  background: radial-gradient(circle at 88% 6%, rgba(242, 169, 27, 0.12), rgba(242, 169, 27, 0) 30%), #f4f6f3;
}

.section-media {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(22, 32, 38, 0.14);
  border-radius: 12px;
  background-color: #e9efec;
  box-shadow: 0 18px 44px rgba(22, 32, 38, 0.1);
}

.section-media img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.partial-error {
  padding: var(--space-4);
  background-color: #fff4d8;
  color: #162026;
}

.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  display: grid;
  align-items: center;
  padding-block-start: calc(var(--space-9) + var(--space-8));
  padding-block-end: var(--space-8);
  color: #fff;
  background-color: #162026;
  background: linear-gradient(90deg, rgba(22, 32, 38, 0.9) 0%, rgba(22, 32, 38, 0.74) 38%, rgba(22, 32, 38, 0.46) 66%, rgba(22, 32, 38, 0.24) 100%), linear-gradient(180deg, rgba(22, 32, 38, 0.12) 0%, rgba(22, 32, 38, 0.58) 100%), url("../graphics/optimized/hero-heavy-equipment-parts-sourcing.jpg") right center/cover no-repeat;
}

.hero-section > .container {
  width: 100%;
}

.process-section__inner,
.request-section__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: var(--space-8);
  align-items: center;
}

.hero-section__inner {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: start;
}

.hero-section__content,
.request-section__content {
  display: grid;
  gap: var(--space-5);
  min-width: 0;
}

.hero-section__content {
  width: 100%;
  justify-self: start;
  justify-items: start;
  text-align: left;
}

.hero-section .section-heading__eyebrow {
  color: rgba(242, 169, 27, 0.94);
  justify-self: start;
  text-align: left;
}

.hero-section__title {
  justify-self: start;
  max-width: 900px;
  font-size: clamp(2.5rem, 5vw, 4.75rem);
  line-height: 1.02;
  font-weight: 700;
  text-align: left;
  overflow-wrap: anywhere;
  hyphens: manual;
}

.hero-section__text {
  justify-self: start;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.125rem;
  line-height: 1.7;
  text-align: left;
  overflow-wrap: anywhere;
}

.hero-section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-self: start;
  justify-content: flex-start;
}

.hero-section .button--secondary {
  border-color: rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.hero-section .button--secondary:hover,
.hero-section .button--secondary:focus {
  border-color: rgba(255, 255, 255, 0.38);
  background-color: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.proof-strip {
  padding-block: var(--space-5);
  background-color: #fff;
  border-bottom: 1px solid rgba(22, 32, 38, 0.14);
}

.proof-strip__inner {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
}

.proof-strip__item {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: var(--space-4);
  align-items: center;
  min-width: 0;
  padding: var(--space-5);
  border: 1px solid rgba(22, 32, 38, 0.14);
  border-left: 3px solid rgba(242, 169, 27, 0.74);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(233, 239, 236, 0.82)), #f4f6f3;
  overflow: hidden;
}

.proof-strip__icon {
  display: inline-grid;
  grid-row: 1/span 2;
  width: 104px;
  height: 104px;
  place-items: center;
  padding: var(--space-2);
  border: 1px solid rgba(15, 59, 50, 0.12);
  border-radius: 8px;
  background-color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72), 0 12px 28px rgba(22, 32, 38, 0.08);
}

.proof-strip__icon img {
  width: 118%;
  height: 118%;
  -o-object-fit: contain;
     object-fit: contain;
}

.proof-strip__value {
  grid-column: 2;
  color: #0f3b32;
  font-weight: 700;
  line-height: 1.2;
}

.proof-strip__item p {
  grid-column: 2;
  color: rgba(22, 32, 38, 0.76);
  font-size: 0.9375rem;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.problem-section__inner {
  display: grid;
  gap: var(--space-7);
}

.problem-section__heading {
  max-width: 1040px;
}

.problem-section__body {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: var(--space-8);
  align-items: stretch;
  min-width: 0;
}

.problem-section__media {
  height: 100%;
  min-height: 100%;
}

.problem-section__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
  align-items: stretch;
}

.problem-card--wide {
  grid-column: 1/-1;
}

.parts-section {
  background-color: #fff;
}

.parts-section__inner,
.usecases-section__inner,
.faq-section__inner {
  display: grid;
  gap: var(--space-7);
}

.parts-section__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
}

.part-card {
  position: relative;
  overflow: hidden;
}

.part-card::before {
  content: "";
  position: absolute;
  inset-block-start: 0;
  inset-inline: 0;
  height: var(--space-1);
  background-color: #f2a91b;
}

.part-card__visual {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border: 1px solid rgba(15, 59, 50, 0.12);
  border-radius: 8px;
  background-color: #fff;
}

.part-card__visual img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.process-section {
  background: linear-gradient(180deg, rgba(216, 226, 222, 0.34), rgba(216, 226, 222, 0)), #f4f6f3;
}

.process-section__steps {
  display: grid;
  gap: var(--space-4);
}

.process-step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: var(--space-4);
  align-items: start;
  padding: var(--space-5);
  border: 1px solid rgba(22, 32, 38, 0.14);
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 18px 44px rgba(22, 32, 38, 0.1);
}

.process-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background-color: #162026;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
}

.process-step h3 {
  margin: 0;
  color: #162026;
  font-size: 1.125rem;
}

.process-step p {
  color: rgba(22, 32, 38, 0.76);
  line-height: 1.65;
}

.process-step--accent {
  border-color: rgba(242, 169, 27, 0.38);
  background: linear-gradient(135deg, rgba(242, 169, 27, 0.16), rgba(255, 255, 255, 0.92)), #fff;
}

.process-step--accent .process-step__number {
  background-color: #f2a91b;
  color: #162026;
}

.process-section__media {
  grid-column: 1/-1;
  aspect-ratio: 16/9;
}

.usecases-section {
  background-color: #162026;
  color: #fff;
}

.usecases-section .section-heading__eyebrow {
  color: #f2a91b;
}

.usecases-section .section-heading__title {
  color: #fff;
}

.usecases-section__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: var(--space-4);
}

.usecase-card {
  display: grid;
  gap: var(--space-3);
  grid-column: span 2;
  min-width: 0;
  padding: var(--space-5);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.06);
}

.usecase-card__media {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.06);
}

.usecase-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.usecase-card--strong {
  grid-column: span 4;
  background: linear-gradient(135deg, rgba(242, 169, 27, 0.16), rgba(255, 255, 255, 0.05)), rgba(255, 255, 255, 0.06);
}

.usecase-card--strong .usecase-card__media {
  aspect-ratio: 16/9;
}

.usecase-card h3 {
  color: #fff;
  font-size: 1.125rem;
}

.usecase-card p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.advantage-card--accent {
  border-color: rgba(242, 169, 27, 0.36);
  background-color: #fff4d8;
}

.request-section {
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  min-height: 100vh;
  /* radial overlay on top of a full-cover background image */
  background-image: radial-gradient(circle at 20% 50%, rgba(140, 180, 170, 0.28) 0%, rgba(25, 55, 50, 0.9) 45%, rgb(5, 15, 15) 100%), url("../graphics/optimized/spare-part-compatibility-check.jpg");
  background-size: cover, cover;
  background-position: center center, center center;
  background-repeat: no-repeat, no-repeat;
  background-attachment: fixed, fixed;
  background-color: rgba(22, 32, 38, 0.45);
}
.request-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: transparent;
}
.request-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: transparent;
}
.request-section .container {
  position: relative;
  z-index: 3;
}
.request-section__inner {
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 60px;
  align-items: center;
  min-height: 600px;
  z-index: 4;
}
.request-section__content {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  max-width: 540px;
}

.request-section .section-heading__eyebrow {
  color: #f2a91b;
}

.request-section .section-heading__title {
  color: #fff;
}

.request-section .section-heading__text {
  color: rgba(255, 255, 255, 0.76);
}

.request-contact {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.request-contact a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding-inline: var(--space-3);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.9375rem;
  text-decoration: none;
}

.request-contact a:hover,
.request-contact a:focus {
  border-color: rgba(242, 169, 27, 0.5);
  color: #fff;
}

.request-section__media {
  width: min(100%, 380px);
  aspect-ratio: 1/1;
  border-color: rgba(255, 255, 255, 0.14);
  background-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.18);
}

.request-form {
  padding: var(--space-6);
  margin: 0 -20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 2;
}

.request-form .form-field {
  margin-bottom: var(--space-2);
}

.request-form .form-label {
  margin-bottom: var(--space-1);
}

.request-form__note {
  color: rgba(22, 32, 38, 0.76);
  font-size: 0.875rem;
  line-height: 1.55;
}

.faq-section {
  background-color: #fff;
}

.faq-section__list {
  display: grid;
  gap: var(--space-3);
}

.faq__item {
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(22, 32, 38, 0.14);
  border-radius: 8px;
  background-color: #f4f6f3;
}

.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  min-height: 60px;
  padding: var(--space-4) var(--space-5);
  color: #162026;
  font-weight: 700;
  cursor: pointer;
}

.faq__item summary::after {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background-color: #fff4d8;
  color: #0f3b32;
}

.faq__item[open] summary::after {
  content: "-";
}

.faq__item p {
  padding: 0 var(--space-5) var(--space-5);
  color: rgba(22, 32, 38, 0.76);
  line-height: 1.65;
}

.uikit-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.uikit-grid--cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
}

.uikit-form {
  max-width: 560px;
  border: 1px solid rgba(22, 32, 38, 0.14);
  border-radius: 12px;
  background-color: #fff;
}

@media (max-width: 1024px) {
  .process-section__inner,
  .request-section__inner {
    grid-template-columns: 1fr;
    gap: var(--space-7);
  }
  .problem-section__body {
    grid-template-columns: 1fr;
    gap: var(--space-7);
  }
  .problem-section__media {
    height: auto;
    min-height: 0;
    aspect-ratio: 3/2;
  }
  .hero-section {
    min-height: auto;
    padding-block-start: calc(var(--space-9) + var(--space-8));
  }
  .request-form {
    padding: var(--space-5);
    margin: var(--space-1);
  }
  .parts-section__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .usecases-section__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .usecase-card {
    grid-column: auto;
  }
  .usecase-card--strong {
    grid-column: 1/-1;
  }
}
@media (max-width: 768px) {
  :root {
    --section-padding: 64px;
  }
  .hero-section {
    padding-block: var(--space-7);
    background: linear-gradient(180deg, rgba(22, 32, 38, 0.88) 0%, rgba(22, 32, 38, 0.74) 100%), url("../graphics/optimized/hero-heavy-equipment-parts-sourcing.jpg") 62% center/cover no-repeat;
  }
  .hero-section__title {
    font-size: clamp(2rem, 10vw, 2.7rem);
  }
  .hero-section__text,
  .section-heading__text {
    font-size: 1rem;
  }
  .proof-strip__inner,
  .parts-section__grid,
  .problem-section__grid,
  .usecases-section__grid,
  .uikit-grid--cards {
    grid-template-columns: 1fr;
  }
  .problem-section__inner,
  .problem-section__body {
    gap: var(--space-5);
  }
  .problem-card--wide {
    grid-column: auto;
  }
  .hero-section__actions {
    display: grid;
  }
  .hero-section__actions .button {
    width: 100%;
  }
  .process-step {
    grid-template-columns: 1fr;
  }
  .request-form {
    padding: var(--space-5);
    margin: var(--space-1);
  }
  .request-section__media {
    width: 100%;
    max-width: 420px;
  }
  .faq__item summary {
    align-items: flex-start;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer__note {
    text-align: left;
  }
}
@media (max-width: 375px) {
  .hero-section__actions,
  .request-contact {
    display: grid;
  }
  .hero-section__actions .button,
  .request-contact a {
    width: 100%;
  }
  .proof-strip__item,
  .card,
  .proof-card,
  .operation-card,
  .audience-card,
  .problem-card,
  .home-benefit-card,
  .home-operations__card,
  .process-step,
  .usecase-card,
  .request-form {
    padding: var(--space-4);
  }
  .request-form {
    margin: var(--space-1);
  }
  .proof-strip__icon {
    width: 84px;
    height: 84px;
  }
  .proof-strip__item {
    grid-template-columns: 84px minmax(0, 1fr);
    gap: var(--space-3);
  }
}/*# sourceMappingURL=styles.css.map */
