:root {
  --bg-page: #f5f6f8;
  --bg-white: #ffffff;
  --bg-tint: #eef1f5;
  --bg-dark: #0b0f14;
  --text-dark: #172033;
  --text-muted: #5f697d;
  --text-light: rgba(255, 255, 255, 0.78);
  --accent: #f29a2e;
  --accent-strong: #ffb75e;
  --line-soft: rgba(23, 32, 51, 0.1);
  --line-soft-strong: rgba(23, 32, 51, 0.14);
  --line-dark: rgba(255, 255, 255, 0.14);
  --success: #1f9d57;
  --radius-xl: 24px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --shadow-soft: 0 10px 24px rgba(20, 31, 48, 0.08);
  --shadow-card: 0 10px 28px rgba(20, 31, 48, 0.09);
  --shadow-dark: 0 22px 44px rgba(0, 0, 0, 0.35);
  --container: min(1140px, 92vw);
  --header-offset: 112px;
  --ease: cubic-bezier(0.2, 0.65, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-offset);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  background: var(--bg-page);
  color: var(--text-dark);
  line-height: 1.6;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  top: 0;
  left: -9999px;
  z-index: 9999;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  background: var(--accent);
  color: #111111;
  font-weight: 700;
}

.skip-link:focus-visible {
  left: 1rem;
  top: 0.8rem;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1400;
  transition: box-shadow 0.25s var(--ease);
}

.top-bar {
  border-bottom: 1px solid transparent;
  background: transparent;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}

.top-bar__inner {
  min-height: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.9rem;
  padding-block: 0.2rem;
}

.top-bar__left,
.top-bar__right {
  display: flex;
  align-items: center;
  gap: 0.82rem;
}

.top-bar__item {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
}

.top-bar__link {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.top-bar__link:hover,
.top-bar__link:focus-visible {
  color: var(--accent);
}

.top-bar__icon {
  width: 15px;
  height: 15px;
  color: var(--accent);
  flex-shrink: 0;
}

.top-bar__icon svg {
  width: 100%;
  height: 100%;
}

.top-bar__text {
  white-space: nowrap;
}

.lang-switcher {
  position: relative;
}

.lang-switcher__toggle {
  min-height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.94);
  padding: 0.32rem 0.62rem;
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
}

.lang-switcher__toggle:hover,
.lang-switcher__toggle:focus-visible {
  border-color: rgba(242, 154, 46, 0.72);
  color: var(--accent);
}

.lang-switcher__toggle svg {
  width: 13px;
  height: 13px;
  transition: transform 0.2s var(--ease);
}

.lang-switcher.is-open .lang-switcher__toggle svg {
  transform: rotate(180deg);
}

.lang-switcher__flag {
  font-size: 0.9rem;
  line-height: 1;
}

.lang-switcher__menu {
  position: absolute;
  top: calc(100% + 0.42rem);
  right: 0;
  min-width: 160px;
  border-radius: 10px;
  border: 1px solid rgba(23, 32, 51, 0.15);
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(20, 31, 48, 0.14);
  padding: 0.34rem;
  z-index: 20;
}

.lang-switcher__option {
  width: 100%;
  background: transparent;
  border: 0;
  border-radius: 8px;
  color: #273650;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.2;
  text-align: left;
  padding: 0.44rem 0.52rem;
  display: flex;
  align-items: center;
  gap: 0.46rem;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.lang-switcher__option:hover,
.lang-switcher__option:focus-visible {
  background: rgba(242, 154, 46, 0.14);
  color: #aa6009;
}

.lang-switcher__option.is-active {
  color: #aa6009;
  background: rgba(242, 154, 46, 0.18);
}

.nav-shell {
  padding-block: 0.72rem;
  background: transparent;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), backdrop-filter 0.3s var(--ease);
}

.site-header.is-scrolled {
  box-shadow: 0 12px 28px rgba(18, 28, 42, 0.08);
}

.site-header.is-scrolled .top-bar {
  background: rgba(255, 255, 255, 0.88);
  border-bottom-color: rgba(23, 32, 51, 0.11);
}

.site-header.is-scrolled .top-bar__link {
  color: #3f4a5f;
}

.site-header.is-scrolled .lang-switcher__toggle {
  border-color: rgba(23, 32, 51, 0.16);
  background: rgba(23, 32, 51, 0.05);
  color: #2b3a53;
}

.site-header.is-scrolled .nav-shell {
  border-bottom: 1px solid rgba(23, 32, 51, 0.1);
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(12px);
}

.nav-shell__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  width: clamp(140px, 16.5vw, 220px);
  transition: width 0.25s var(--ease);
}

.site-header.is-scrolled .brand {
  width: clamp(100px, 9vw, 140px);
}

.brand img {
  width: 100%;
  height: auto;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.main-nav a {
  position: relative;
  font-size: 0.94rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.25s var(--ease);
}

.site-header.is-scrolled .main-nav a {
  color: #2b364c;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--accent);
  border-radius: 99px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s var(--ease);
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--accent);
}

.main-nav a[aria-current="page"] {
  color: var(--accent);
}

.site-header.is-scrolled .main-nav a[aria-current="page"] {
  color: #c7720f;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0.25rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px 0;
  background: #ffffff;
  transition: transform 0.2s var(--ease), opacity 0.2s var(--ease), background 0.2s var(--ease);
}

.site-header.is-scrolled .nav-toggle span {
  background: #1f2a3f;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(110deg, rgba(11, 15, 20, 0.92), rgba(11, 15, 20, 0.46)),
    var(--hero-image, url("../img/hero.jpg")) center / cover no-repeat;
  color: #ffffff;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to bottom, rgba(11, 15, 20, 0.14), rgba(11, 15, 20, 0.82));
}

.hero__content {
  max-width: 720px;
  padding-block: clamp(4.4rem, 9vh, 7.2rem);
}

.hero__eyebrow {
  margin: 0;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}

.hero__title {
  margin: 0.85rem 0 0.95rem;
  font-size: clamp(2rem, 5.2vw, 4.1rem);
  line-height: 1.05;
}

.hero__title span {
  display: block;
  opacity: 0;
  transform: translateY(24px);
  animation: heroReveal 0.8s var(--ease) forwards;
}

.hero__title span:nth-child(2) {
  animation-delay: 0.14s;
}

.hero__subtitle {
  margin: 0;
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  opacity: 0;
  transform: translateY(16px);
  animation: heroReveal 0.72s var(--ease) 0.3s forwards;
}

.hero__actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero__trust {
  margin: 1.35rem 0 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.82);
}

.section {
  position: relative;
  padding-block: clamp(4rem, 6vw, 5.6rem);
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(23, 32, 51, 0.14), transparent);
}

.section--white {
  background: var(--bg-white);
}

.section--tint {
  background: var(--bg-tint);
}

.section__header {
  margin-bottom: 2rem;
}

.section__kicker {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}

.section__title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.7rem, 3.6vw, 2.5rem);
  line-height: 1.2;
  color: #152038;
}

.section__lead {
  margin: 0;
  color: var(--text-muted);
}

.about__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.about__content p {
  margin: 0 0 1.6rem;
  color: var(--text-muted);
}

.about__media {
  margin: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-soft);
}

.about__media img {
  width: 100%;
  min-height: 330px;
  object-fit: cover;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.service-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-soft);
  background: #ffffff;
  box-shadow: var(--shadow-card);
  padding: 1.5rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-7px);
  border-color: rgba(242, 154, 46, 0.45);
  box-shadow: 0 16px 30px rgba(20, 31, 48, 0.14);
}

.service-card__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  margin-bottom: 0.85rem;
  color: var(--accent);
  background: rgba(242, 154, 46, 0.15);
}

.service-card__icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.service-card h3 {
  margin: 0 0 0.55rem;
  color: #18243a;
  font-size: 1.07rem;
}

.service-card p {
  margin: 0 0 0.9rem;
  color: #5f6b81;
}

.service-card__link {
  font-size: 0.92rem;
  font-weight: 600;
  color: #273650;
}

.service-card__link:hover,
.service-card__link:focus-visible {
  color: var(--accent);
}

.catalogue__panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-soft-strong);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(110deg, rgba(11, 15, 20, 0.82), rgba(11, 15, 20, 0.45)),
    url("../img/catalogue.jpg") center / cover no-repeat;
  padding: clamp(1.6rem, 3.7vw, 2.6rem);
  box-shadow: var(--shadow-soft);
}

.catalogue__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(242, 154, 46, 0.2), transparent 48%);
  pointer-events: none;
}

.catalogue__panel .section__kicker,
.catalogue__panel .section__title,
.catalogue__panel p {
  position: relative;
  z-index: 1;
}

.catalogue__panel .section__title {
  color: #ffffff;
}

.catalogue__panel p {
  margin: 0 0 1.2rem;
  max-width: 60ch;
  color: rgba(255, 255, 255, 0.85);
}

.catalogue__panel .btn {
  position: relative;
  z-index: 1;
}

.represented-brands {
  position: relative;
  overflow: hidden;
  --brand-logo-card-width: 188px;
  --brand-logo-card-height: 124px;
  --brand-logo-media-height: 92px;
  --brand-logo-gap: 1.25rem;
}

.represented-brands::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 18%, rgba(242, 154, 46, 0.1), transparent 55%),
    radial-gradient(circle at 84% 72%, rgba(24, 36, 58, 0.05), transparent 58%);
}

.represented-brands .container {
  position: relative;
  z-index: 1;
}

.brands-showcase__header {
  margin-bottom: 1.8rem;
  text-align: center;
  max-width: 74ch;
  margin-inline: auto;
}

.brands-showcase__meta {
  margin-top: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem 1rem;
}

.brands-showcase__intro {
  margin: 0;
  padding: 0.55rem 0.9rem;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
  color: #42516b;
  font-size: 0.9rem;
  font-weight: 650;
  letter-spacing: 0.02em;
}

.brands-showcase__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(242, 154, 46, 0.28);
  background: rgba(242, 154, 46, 0.1);
  color: #ab620e;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 0.22s var(--ease),
    background 0.22s var(--ease),
    color 0.22s var(--ease),
    border-color 0.22s var(--ease);
}

.brands-showcase__link:hover,
.brands-showcase__link:focus-visible {
  background: var(--accent);
  color: #111111;
  border-color: rgba(242, 154, 46, 0.45);
  transform: translateY(-2px);
}

.brands-carousel {
  position: relative;
  padding-inline: 3.1rem;
}

.brands-carousel::before,
.brands-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 56px;
  pointer-events: none;
  z-index: 1;
}

.brands-carousel::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-white), rgba(255, 255, 255, 0));
}

.brands-carousel::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg-white), rgba(255, 255, 255, 0));
}

.brands-carousel__viewport {
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.brands-carousel__viewport::-webkit-scrollbar {
  display: none;
}

.brands-carousel__track {
  display: flex;
  gap: var(--brand-logo-gap);
  width: max-content;
  padding: 0.3rem;
  align-items: stretch;
}

.brand-logo-card {
  flex: 0 0 var(--brand-logo-card-width);
  width: var(--brand-logo-card-width);
  height: var(--brand-logo-card-height);
  display: grid;
  place-items: stretch;
  padding: 0;
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 24px rgba(20, 31, 48, 0.07);
  scroll-snap-align: start;
  transition:
    transform 0.22s var(--ease),
    box-shadow 0.22s var(--ease),
    border-color 0.22s var(--ease);
}

.brand-logo-card:hover,
.brand-logo-card:focus-within {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(20, 31, 48, 0.11);
  border-color: rgba(242, 154, 46, 0.38);
}

.brand-logo-card__media {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: 1.1rem;
  overflow: hidden;
  border-radius: inherit;
  background:
    radial-gradient(circle at top left, rgba(242, 154, 46, 0.1), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 247, 250, 0.96));
}

.brand-logo-card__media > img,
.brand-logo-card__media > picture {
  width: 100%;
  height: var(--brand-logo-media-height);
  display: grid;
  place-items: center;
}

.brand-logo-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  -webkit-font-smoothing: antialiased;
  image-rendering: -webkit-optimize-contrast;
}

.brand-logo-card__media picture img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brands-carousel__nav {
  position: absolute;
  top: 50%;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(23, 32, 51, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: #18243a;
  box-shadow: 0 10px 20px rgba(20, 31, 48, 0.12);
  display: grid;
  place-items: center;
  font: inherit;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  transform: translateY(-50%);
  transition:
    transform 0.22s var(--ease),
    background 0.22s var(--ease),
    color 0.22s var(--ease),
    border-color 0.22s var(--ease);
}

.brands-carousel__nav:hover,
.brands-carousel__nav:focus-visible {
  background: var(--accent);
  color: #111111;
  border-color: rgba(242, 154, 46, 0.45);
  transform: translateY(-50%) scale(1.04);
}

.brands-carousel__nav--prev {
  left: 0;
}

.brands-carousel__nav--next {
  right: 0;
}

body.catalogue-page {
  background: var(--bg-page);
}

.catalogue-hero {
  position: relative;
  min-height: clamp(430px, 72vh, 690px);
  display: flex;
  align-items: flex-end;
  padding-top: clamp(7rem, 12vh, 9rem);
  padding-bottom: clamp(3rem, 6vh, 4.6rem);
  color: #ffffff;
  background:
    linear-gradient(120deg, rgba(11, 15, 20, 0.88), rgba(11, 15, 20, 0.52)),
    url("../img/products/catalogue_hero.png") center / cover no-repeat;
  isolation: isolate;
}

.catalogue-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 16% 22%, rgba(242, 154, 46, 0.26), transparent 42%),
    linear-gradient(to top, rgba(11, 15, 20, 0.65), rgba(11, 15, 20, 0.1));
}

.catalogue-hero__content {
  max-width: 840px;
}

.catalogue-hero__kicker {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}

.catalogue-hero h1 {
  margin: 0.72rem 0 0.85rem;
  line-height: 1.1;
  font-size: clamp(2rem, 4.6vw, 3.5rem);
}

.catalogue-hero p {
  margin: 0;
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.84);
}

.catalogue-hero__stats {
  margin-top: 1.7rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.catalogue-hero__stats article {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(4px);
  padding: 0.82rem 0.88rem;
}

.catalogue-hero__stats strong {
  display: block;
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  line-height: 1.2;
}

.catalogue-hero__stats span {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.75);
}

.catalogue-summary {
  z-index: 2;
}

.catalogue-summary__card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-soft);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  padding: clamp(1.25rem, 2.6vw, 1.8rem);
}

.catalogue-summary__card h2 {
  margin: 0 0 0.65rem;
  color: #18243a;
  font-size: clamp(1.32rem, 2.7vw, 1.86rem);
}

.catalogue-summary__card p {
  margin: 0 0 0.82rem;
  color: #5d6880;
}

.catalogue-summary__card ul {
  list-style: disc;
  margin: 0;
  padding-left: 1.2rem;
  color: #2f3f58;
}

.catalogue-summary__card li + li {
  margin-top: 0.4rem;
}

.catalogue-summary__actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.catalogue-filter {
  position: relative;
  padding-block: 1.1rem;
  background: transparent;
}

.catalogue-filter .container {
  display: grid;
  gap: 0.95rem;
  padding: 1rem 1.05rem;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 12% 18%, rgba(242, 154, 46, 0.08), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 248, 251, 0.94));
  box-shadow: var(--shadow-soft);
}

.catalogue-filter__header {
  display: grid;
  gap: 0.22rem;
  margin: 0;
}

.catalogue-filter__header h2 {
  margin: 0;
  font-size: 1.08rem;
  color: #1b2840;
}

.catalogue-filter__header p {
  margin: 0;
  font-size: 0.92rem;
  color: #5e6980;
}

.catalogue-filter__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(23, 32, 51, 0.08);
}

.catalogue-filter__btn {
  border: 1px solid rgba(23, 32, 51, 0.15);
  background: rgba(255, 255, 255, 0.9);
  color: #2b3a53;
  border-radius: 999px;
  min-height: 40px;
  padding: 0.5rem 0.9rem;
  font: inherit;
  font-size: 0.88rem;
  line-height: 1;
  cursor: pointer;
  transition:
    background 0.2s var(--ease),
    color 0.2s var(--ease),
    border-color 0.2s var(--ease),
    transform 0.2s var(--ease);
}

.catalogue-filter__btn:hover,
.catalogue-filter__btn:focus-visible {
  border-color: rgba(242, 154, 46, 0.45);
  background: #ffffff;
  color: #a85f08;
  transform: translateY(-1px);
}

.catalogue-filter__btn.is-active {
  border-color: rgba(242, 154, 46, 0.65);
  background: rgba(242, 154, 46, 0.14);
  color: #ad5f08;
  font-weight: 600;
}

.catalogue-content {
  padding-block: clamp(2rem, 4vw, 3.4rem) clamp(3.4rem, 6vw, 5.3rem);
}

.catalogue-content .container {
  display: grid;
  gap: 1.2rem;
}

.catalogue-category {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  padding: clamp(1.05rem, 2.8vw, 1.65rem);
}

.catalogue-category__head {
  display: grid;
  gap: 0.42rem;
}

.catalogue-category__eyebrow {
  margin: 0;
  color: #4d5b74;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.catalogue-category__title {
  margin: 0;
  color: #1c2941;
  font-size: clamp(1.26rem, 3vw, 1.72rem);
  line-height: 1.25;
}

.catalogue-category__desc {
  margin: 0;
  color: #5c6780;
}

.catalogue-pricing {
  margin-top: 0.92rem;
  border: 1px solid rgba(23, 32, 51, 0.12);
  border-radius: 12px;
  background: #fafbfc;
  overflow: hidden;
}

.catalogue-pricing table {
  width: 100%;
  border-collapse: collapse;
}

.catalogue-pricing td {
  padding: 0.62rem 0.78rem;
  font-size: 0.84rem;
  vertical-align: top;
  white-space: normal;
  word-break: break-word;
  hyphens: auto;
}

.catalogue-pricing tr + tr td {
  border-top: 1px solid rgba(23, 32, 51, 0.1);
}

.catalogue-pricing td:first-child {
  width: 35%;
  font-weight: 600;
  color: #2f3e57;
  background: rgba(23, 32, 51, 0.03);
}

.catalogue-pricing td:last-child {
  color: #4d5d77;
}

.catalogue-product-grid {
  margin-top: 1.05rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
  align-items: start;
}

.catalogue-product-card {
  min-width: 0;
  border-radius: 14px;
  border: 1px solid var(--line-soft);
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(20, 31, 48, 0.07);
  overflow: hidden;
  transition:
    transform 0.22s var(--ease),
    box-shadow 0.22s var(--ease),
    border-color 0.22s var(--ease);
}

.catalogue-product-card:hover,
.catalogue-product-card:focus-within {
  transform: translateY(-5px);
  box-shadow: 0 18px 30px rgba(20, 31, 48, 0.12);
  border-color: rgba(242, 154, 46, 0.4);
}

.catalogue-product-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #eef1f4;
}

.catalogue-product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s var(--ease);
}

.catalogue-product-card:hover .catalogue-product-card__media img {
  transform: scale(1.04);
}

.catalogue-product-card__body {
  display: grid;
  gap: 0.62rem;
  padding: 0.95rem;
  align-content: start;
}

.catalogue-product-card__code {
  margin: 0;
  font-size: 0.74rem;
  line-height: 1.1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #bd6a10;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.catalogue-product-card h4 {
  margin: 0;
  font-size: 1.03rem;
  line-height: 1.3;
  color: #1a2740;
}

.catalogue-product-card p {
  margin: 0;
  color: #5b6680;
  font-size: 0.92rem;
}

.catalogue-product-card__details {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.42rem;
}

.catalogue-product-card__details li {
  position: relative;
  color: #31405a;
  font-size: 0.84rem;
  line-height: 1.4;
  padding-left: 0.78rem;
}

.catalogue-product-card__details li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(242, 154, 46, 0.82);
}

.catalogue-product-card__action {
  margin-top: 0.3rem;
}

.catalogue-product-card__action .btn {
  width: 100%;
  min-height: 42px;
  font-size: 0.88rem;
}

.catalogue-contact-cta {
  position: relative;
  background:
    linear-gradient(120deg, rgba(11, 15, 20, 0.88), rgba(11, 15, 20, 0.68)),
    url("../img/products/catalogue_cta.png") center / cover no-repeat;
  color: #ffffff;
  padding-block: clamp(2.8rem, 5vw, 4.2rem);
}

.catalogue-contact-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.26), transparent);
}

.catalogue-contact-cta__inner {
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 1rem;
  align-items: center;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  box-shadow: var(--shadow-dark);
  padding: clamp(1.35rem, 3vw, 2rem);
}

.catalogue-contact-cta h2 {
  margin: 0 0 0.42rem;
  font-size: clamp(1.38rem, 3vw, 2.05rem);
  line-height: 1.2;
}

.catalogue-contact-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.catalogue-contact-cta__actions {
  text-align: right;
}

.catalogue-contact-cta__actions p {
  margin-top: 0.82rem;
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.catalogue-contact-cta__actions a {
  transition: color 0.25s var(--ease);
}

.catalogue-contact-cta__actions a:hover,
.catalogue-contact-cta__actions a:focus-visible {
  color: var(--accent);
}

.catalogue-empty {
  border: 1px dashed rgba(23, 32, 51, 0.2);
  border-radius: 12px;
  padding: 1rem;
  color: #4d5a72;
  background: #ffffff;
}

/* Catalogue Enhancements: live search, sorting, no-result state, modal details */
.catalogue-toolbar {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(23, 32, 51, 0.08);
}

.catalogue-search {
  display: grid;
  gap: 0.38rem;
}

.catalogue-search label,
.catalogue-sort label {
  font-size: 0.84rem;
  color: #4e5b74;
  font-weight: 600;
}

.catalogue-search__field {
  position: relative;
}

.catalogue-search__field input {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(23, 32, 51, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.96);
  color: #1a2740;
  font: inherit;
  padding: 0.62rem 5.5rem 0.62rem 0.82rem;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.catalogue-search__field input:focus {
  outline: 0;
  border-color: rgba(242, 154, 46, 0.7);
  box-shadow: 0 0 0 3px rgba(242, 154, 46, 0.16);
}

.catalogue-search__clear {
  position: absolute;
  top: 50%;
  right: 0.45rem;
  transform: translateY(-50%);
  border: 1px solid rgba(23, 32, 51, 0.16);
  background: #ffffff;
  color: #2e3d58;
  border-radius: 999px;
  font: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  padding: 0.38rem 0.6rem;
  cursor: pointer;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease);
}

.catalogue-search__clear:hover,
.catalogue-search__clear:focus-visible {
  color: var(--accent);
  border-color: rgba(242, 154, 46, 0.45);
  transform: translateY(calc(-50% - 1px));
}

.catalogue-sort {
  min-width: 220px;
  display: grid;
  gap: 0.38rem;
}

.catalogue-sort select {
  min-height: 44px;
  border: 1px solid rgba(23, 32, 51, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.96);
  color: #1f2c45;
  font: inherit;
  padding: 0.62rem 2rem 0.62rem 0.72rem;
}

.catalogue-sort select:focus {
  outline: 0;
  border-color: rgba(242, 154, 46, 0.7);
  box-shadow: 0 0 0 3px rgba(242, 154, 46, 0.16);
}

.catalogue-filter__meta {
  margin-top: 0.2rem;
  font-size: 0.84rem;
  color: #5c6880;
}

.catalogue-empty {
  display: grid;
  gap: 0.64rem;
}

.catalogue-empty__title {
  margin: 0;
  color: #1c2a42;
  font-size: 1.08rem;
}

.catalogue-empty__text {
  margin: 0;
  color: #56627b;
}

.catalogue-empty__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.catalogue-empty__clear {
  border: 1px solid rgba(23, 32, 51, 0.15);
  background: #ffffff;
  color: #2a3a54;
  border-radius: 999px;
  min-height: 40px;
  padding: 0.56rem 1rem;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease);
}

.catalogue-empty__clear:hover,
.catalogue-empty__clear:focus-visible {
  border-color: rgba(242, 154, 46, 0.44);
  color: var(--accent);
  transform: translateY(-2px);
}

.catalogue-product-card {
  cursor: pointer;
}

.catalogue-product-card--enter {
  animation: catalogueCardIn 0.26s var(--ease);
}

.catalogue-product-card__action {
  display: grid;
  gap: 0.46rem;
}

.catalogue-product-card__action .btn {
  width: 100%;
  min-height: 42px;
  font-size: 0.88rem;
}

.catalogue-product-card__details-btn {
  border: 1px solid rgba(23, 32, 51, 0.16);
  background: #ffffff;
  color: #233249;
  border-radius: 999px;
  min-height: 40px;
  padding: 0.52rem 0.85rem;
  font: inherit;
  font-size: 0.87rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease);
}

.catalogue-product-card__details-btn:hover,
.catalogue-product-card__details-btn:focus-visible {
  border-color: rgba(242, 154, 46, 0.44);
  color: var(--accent);
  transform: translateY(-2px);
}

.is-modal-open {
  overflow: hidden;
}

.catalogue-modal {
  position: fixed;
  inset: 0;
  z-index: 2200;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 3.5vw, 1.6rem);
}

.catalogue-modal[hidden] {
  display: none;
}

.catalogue-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 20, 0.65);
  backdrop-filter: blur(3px);
}

.catalogue-modal__dialog {
  position: relative;
  width: min(1020px, 100%);
  max-height: min(88vh, 860px);
  overflow: auto;
  border-radius: 16px;
  border: 1px solid rgba(23, 32, 51, 0.14);
  background: #ffffff;
  box-shadow: 0 30px 64px rgba(7, 12, 20, 0.42);
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  animation: catalogueModalIn 0.28s var(--ease);
}

.catalogue-modal__close {
  position: absolute;
  top: 0.62rem;
  right: 0.62rem;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(23, 32, 51, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: #283955;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}

.catalogue-modal__close:hover,
.catalogue-modal__close:focus-visible {
  color: var(--accent);
  border-color: rgba(242, 154, 46, 0.45);
  transform: scale(1.04);
}

.catalogue-modal__media {
  background: #ecf0f4;
}

.catalogue-modal__media img {
  width: 100%;
  height: 100%;
  max-height: 86vh;
  object-fit: cover;
}

.catalogue-modal__body {
  padding: clamp(1.1rem, 3vw, 1.6rem);
  display: grid;
  align-content: start;
  gap: 0.74rem;
}

.catalogue-modal__category {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #b3660d;
  font-weight: 700;
}

.catalogue-modal__body h3 {
  margin: 0;
  color: #192741;
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  line-height: 1.18;
}

.catalogue-modal__description {
  margin: 0;
  color: #58637c;
}

.catalogue-modal__details {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.catalogue-modal__details li {
  position: relative;
  padding-left: 0.78rem;
  color: #2f3f5a;
  font-size: 0.92rem;
}

.catalogue-modal__details li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.56em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(242, 154, 46, 0.82);
}

.catalogue-modal__body .btn {
  margin-top: 0.28rem;
}

@keyframes catalogueCardIn {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes catalogueModalIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.inner-hero {
  position: relative;
  min-height: clamp(360px, 58vh, 560px);
  display: flex;
  align-items: flex-end;
  padding-top: clamp(6.8rem, 10vh, 8.6rem);
  padding-bottom: clamp(2.8rem, 5.8vh, 4.2rem);
  color: #ffffff;
  isolation: isolate;
}

.inner-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}

.inner-hero--faq {
  background:
    linear-gradient(120deg, rgba(11, 15, 20, 0.88), rgba(11, 15, 20, 0.6)),
    url("../img/products/catalogue_cta.png") center / cover no-repeat;
}

.inner-hero--careers {
  background:
    linear-gradient(120deg, rgba(11, 15, 20, 0.9), rgba(11, 15, 20, 0.64)),
    url("../img/products/catalogue_hero.png") center / cover no-repeat;
}

.inner-hero--about {
  background:
    linear-gradient(120deg, rgba(11, 15, 20, 0.9), rgba(11, 15, 20, 0.66)),
    url("../img/about.jpg") center / cover no-repeat;
}

.inner-hero--services {
  background:
    linear-gradient(120deg, rgba(11, 15, 20, 0.9), rgba(11, 15, 20, 0.66)),
    url("../img/hero.jpg") center / cover no-repeat;
}

.inner-hero--contact {
  background:
    linear-gradient(120deg, rgba(11, 15, 20, 0.9), rgba(11, 15, 20, 0.62)),
    url("../img/cta-bg.jpg") center / cover no-repeat;
}

.inner-hero__content {
  max-width: 760px;
}

.inner-hero__kicker {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent);
}

.inner-hero h1 {
  margin: 0.72rem 0 0.76rem;
  line-height: 1.12;
  font-size: clamp(1.95rem, 4.2vw, 3.2rem);
}

.inner-hero p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  max-width: 62ch;
}

.inner-hero .btn {
  margin-top: 1.3rem;
}

.about-story__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.2rem, 3vw, 2.4rem);
  align-items: stretch;
}

.about-story__content p {
  margin: 0;
  color: #59657d;
}

.about-story__content p + p {
  margin-top: 0.95rem;
}

.about-story__actions {
  margin-top: 1.45rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.78rem;
}

.about-story__media {
  margin: 0;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line-soft);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  min-height: 100%;
  height: 100%;
}

.about-story__media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
}

.about-solutions__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.92rem;
}

.about-solution-card {
  border-radius: 16px;
  border: 1px solid var(--line-soft);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  padding: 1.05rem;
}

.about-solution-card h3 {
  margin: 0 0 0.55rem;
  color: #1a2740;
  font-size: 1.03rem;
}

.about-solution-card p {
  margin: 0;
  color: #5b6780;
}

.services-overview__intro {
  max-width: 860px;
}

.services-overview__intro .section__lead {
  color: #55627b;
}

.services-offers__list {
  display: grid;
  gap: 1rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
}

.service-offer-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-soft);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
}

.service-offer-card:nth-child(even) .service-offer-card__media {
  order: 2;
}

.service-offer-card:nth-child(even) .service-offer-card__content {
  order: 1;
}

.service-offer-card__media {
  margin: 0;
  min-height: 100%;
}

.service-offer-card__media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.service-offer-card__content {
  padding: clamp(1rem, 2.6vw, 1.45rem);
  display: grid;
  gap: 0.58rem;
  align-content: center;
}

.service-offer-card__kicker {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ba6910;
  font-weight: 700;
}

.service-offer-card h3 {
  margin: 0;
  color: #16233a;
  font-size: clamp(1.1rem, 2.5vw, 1.46rem);
  line-height: 1.28;
}

.service-offer-card p {
  margin: 0;
  color: #5b6780;
}

.faq-section {
  overflow: hidden;
}

.faq-layout {
  display: grid;
  grid-template-columns: 1.24fr 0.76fr;
  gap: 1.05rem;
  align-items: start;
}

.faq-accordion {
  display: grid;
  gap: 0.72rem;
}

.faq-item {
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(20, 31, 48, 0.07);
  padding: 0.82rem 0.95rem;
}

.faq-item h3 {
  margin: 0;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin: 0;
  border: 0;
  background: transparent;
  color: #1f2d46;
  font: inherit;
  text-align: left;
  line-height: 1.34;
  font-weight: 600;
  cursor: pointer;
  padding: 0.1rem 0;
}

.faq-question::after {
  content: "+";
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 1px solid rgba(23, 32, 51, 0.16);
  display: grid;
  place-items: center;
  color: #495874;
}

.faq-question[aria-expanded="true"] {
  color: #16233a;
}

.faq-question[aria-expanded="true"]::after {
  content: "-";
  color: #ac5f09;
  border-color: rgba(242, 154, 46, 0.5);
  background: rgba(242, 154, 46, 0.14);
}

.faq-answer {
  border-top: 1px solid rgba(23, 32, 51, 0.1);
  margin-top: 0.58rem;
  padding-top: 0.7rem;
}

.faq-answer p {
  margin: 0;
  color: #5b6780;
}

.faq-answer a {
  color: #2b3f62;
  text-decoration: underline;
}

.faq-answer a:hover,
.faq-answer a:focus-visible {
  color: var(--accent);
}

.faq-help {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(246, 248, 251, 0.95)),
    url("../img/products/catalogue_hero.png") center / cover no-repeat;
  box-shadow: var(--shadow-soft);
  padding: 1.05rem;
}

.faq-help h3 {
  margin: 0 0 0.55rem;
  color: #18253d;
  font-size: 1.18rem;
}

.faq-help p {
  margin: 0 0 0.95rem;
  color: #58637b;
}

.faq-help .btn {
  width: 100%;
}

.faq-help__download {
  margin-top: 0.55rem;
  min-height: 44px;
  border: 1px solid rgba(23, 32, 51, 0.17);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #24344f;
  font-weight: 600;
  transition: color 0.22s var(--ease), border-color 0.22s var(--ease), transform 0.22s var(--ease);
}

.faq-help__download:hover,
.faq-help__download:focus-visible {
  color: var(--accent);
  border-color: rgba(242, 154, 46, 0.44);
  transform: translateY(-2px);
}

.faq-help__contact {
  margin-top: 0.9rem;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(23, 32, 51, 0.1);
}

.faq-help__contact p {
  margin: 0;
}

.faq-help__contact p + p {
  margin-top: 0.3rem;
}

.faq-help__contact a {
  color: #2a3d5d;
}

.faq-help__contact a:hover,
.faq-help__contact a:focus-visible {
  color: var(--accent);
}

.careers-values__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.career-card {
  border-radius: 14px;
  border: 1px solid var(--line-soft);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  padding: 1rem;
}

.career-card h3 {
  margin: 0 0 0.55rem;
  color: #1b2840;
  font-size: 1.03rem;
}

.career-card p {
  margin: 0;
  color: #5b667f;
}

.careers-jobs__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}

.careers-jobs-list {
  display: grid;
  gap: 0.95rem;
}

.career-job {
  border-radius: 18px;
  border: 1px solid var(--line-soft);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.career-job__summary {
  cursor: pointer;
  padding: clamp(1rem, 2.2vw, 1.25rem);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  list-style: none;
}

.career-job__summary::-webkit-details-marker {
  display: none;
}

.career-job__summary-inner {
  display: grid;
  gap: 0.65rem;
}

.career-job__title {
  margin: 0;
  color: #1a2740;
  font-size: clamp(1.06rem, 2.2vw, 1.2rem);
  line-height: 1.2;
}

.career-job__chevron {
  width: 12px;
  height: 12px;
  margin-top: 0.4rem;
  border-right: 2px solid rgba(23, 32, 51, 0.55);
  border-bottom: 2px solid rgba(23, 32, 51, 0.55);
  transform: rotate(45deg);
  transition: transform 0.22s var(--ease);
  flex: 0 0 auto;
}

.career-job[open] .career-job__chevron {
  transform: rotate(-135deg);
}

.career-job__body {
  border-top: 1px solid rgba(23, 32, 51, 0.12);
  padding: clamp(1rem, 2.2vw, 1.25rem);
  display: grid;
  gap: 0.75rem;
}

.career-job__body p {
  margin: 0;
  color: #5b6780;
}

.career-job__lead {
  color: #22344f;
  font-weight: 600;
}

.career-job__subhead {
  margin: 0.2rem 0 -0.2rem;
  font-size: 0.95rem;
  color: #1a2740;
}

.career-job__requirements {
  margin: 0;
  padding-left: 1.2rem;
  list-style: disc;
  color: #5b6780;
  display: grid;
  gap: 0.35rem;
}

.career-job__requirements li {
  margin: 0;
}

.career-job__salary,
.career-job__posted {
  font-size: 0.92rem;
  color: #49556e;
  font-weight: 600;
}

.career-job__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 0.9rem;
  align-items: center;
  padding-top: 0.35rem;
}

.career-job__link {
  color: #2a3d5d;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.22s var(--ease);
}

.career-job__link:hover,
.career-job__link:focus-visible {
  color: var(--accent);
}

.careers-jobs__empty {
  margin: 0;
  border: 1px dashed rgba(23, 32, 51, 0.18);
  background: rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  padding: 1rem;
  color: #5b6780;
  font-weight: 600;
}

.career-job-card {
  border-radius: 16px;
  border: 1px solid var(--line-soft);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  padding: 1rem;
  display: grid;
  gap: 0.74rem;
}

.career-job-card h3 {
  margin: 0;
  color: #1a2740;
  font-size: 1.08rem;
}

.career-job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
}

.career-job-meta li {
  border: 1px solid rgba(23, 32, 51, 0.12);
  background: #f7f9fc;
  color: #374761;
  border-radius: 999px;
  font-size: 0.8rem;
  padding: 0.22rem 0.66rem;
}

.career-job-card p {
  margin: 0;
  color: #5b6780;
}

.career-job-card .btn {
  margin-top: 0.12rem;
}

.careers-process__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.process-step {
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  padding: 0.95rem;
}

.process-step span {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #1f2f4b;
  background: rgba(242, 154, 46, 0.18);
}

.process-step h3 {
  margin: 0.68rem 0 0.45rem;
  font-size: 1rem;
  color: #1a2740;
}

.process-step p {
  margin: 0;
  color: #5b6780;
}

.careers-apply__wrap {
  max-width: 940px;
}

.career-form-grid input[type="file"] {
  padding: 0.58rem 0.72rem;
}

.benefits-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 0.9rem;
  margin-bottom: 1.7rem;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 0.72rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line-soft);
  background: #ffffff;
  padding: 0.82rem 0.9rem;
}

.benefits-list li span:last-child {
  color: #233047;
}

.benefit-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  flex-shrink: 0;
  background: rgba(242, 154, 46, 0.16);
  color: var(--accent);
}

.benefit-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.stat-card {
  border-radius: var(--radius-md);
  border: 1px solid var(--line-soft);
  background: #ffffff;
  padding: 1rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.stat-card strong {
  display: block;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.1;
  color: #1f2c44;
}

.stat-card span {
  color: #677287;
  font-size: 0.86rem;
}

.cta-band {
  position: relative;
  background:
    linear-gradient(120deg, rgba(11, 15, 20, 0.9), rgba(11, 15, 20, 0.7)),
    var(--cta-band-image, url("../img/cta-bg.jpg")) center / cover no-repeat;
  color: #ffffff;
  padding-block: clamp(3.1rem, 5vw, 4.6rem);
}

.cta-band::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
}

.cta-band__inner {
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 1rem;
  align-items: center;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 3vw, 2.1rem);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  box-shadow: var(--shadow-dark);
}

.cta-band .section__title {
  color: #ffffff;
  margin-bottom: 0.35rem;
}

.cta-band p {
  margin: 0;
  color: var(--text-light);
}

.cta-band__actions {
  display: grid;
  justify-items: end;
  text-align: right;
  gap: 0.75rem;
}

.cta-band__actions p {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cta-band__actions a {
  transition: color 0.25s var(--ease);
}

.cta-band__actions a:hover,
.cta-band__actions a:focus-visible {
  color: var(--accent);
}

.contact-form {
  border: 1px solid var(--line-soft-strong);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  padding: clamp(1.3rem, 2.8vw, 2rem);
}

.contact-page-section__header {
  max-width: 860px;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.2rem, 3.4vw, 2.8rem);
  align-items: start;
}

.contact-info-card {
  border: 1px solid var(--line-soft-strong);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-soft);
  padding: clamp(1.25rem, 2.6vw, 1.85rem);
  backdrop-filter: blur(10px);
}

.contact-info-card__title {
  margin: 0;
  font-size: 1.12rem;
  color: #152038;
}

.contact-info-card__subtitle {
  margin: 0.5rem 0 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-info-card__items {
  margin-top: 1.1rem;
  display: grid;
  gap: 0.85rem;
}

.contact-info-card__item {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 0.9rem;
  border-radius: 16px;
  border: 1px solid rgba(23, 32, 51, 0.12);
  padding: 0.85rem 0.9rem;
  background: rgba(255, 255, 255, 0.96);
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), border-color 0.22s var(--ease);
}

.contact-info-card__item:hover,
.contact-info-card__item:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(242, 154, 46, 0.32);
  box-shadow: 0 14px 30px rgba(20, 31, 48, 0.12);
}

.contact-info-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #1a2a42;
  background: linear-gradient(135deg, rgba(242, 154, 46, 0.2), rgba(242, 154, 46, 0.08));
}

.contact-info-card__icon svg {
  width: 22px;
  height: 22px;
}

.contact-info-card__item strong {
  display: block;
  font-size: 0.92rem;
  color: #152038;
}

.contact-info-card__item span span {
  display: block;
  margin-top: 0.15rem;
  color: #5a6680;
  font-size: 0.92rem;
  line-height: 1.3;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem 1rem;
  margin-bottom: 1rem;
}

.form-group {
  display: grid;
  gap: 0.45rem;
}

.form-group label {
  font-size: 0.9rem;
  color: #25334c;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  font: inherit;
  color: #16233a;
  border: 1px solid rgba(23, 32, 51, 0.19);
  border-radius: 10px;
  background: #ffffff;
  padding: 0.75rem 0.82rem;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: 0;
  border-color: rgba(242, 154, 46, 0.82);
  box-shadow: 0 0 0 3px rgba(242, 154, 46, 0.2);
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-group--honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.form-group.is-invalid label {
  color: #a73a2b;
}

.form-group.is-invalid input,
.form-group.is-invalid textarea,
.form-group.is-invalid select {
  border-color: rgba(167, 58, 43, 0.8);
  box-shadow: 0 0 0 3px rgba(167, 58, 43, 0.15);
}

.form-error {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.35;
  color: #a73a2b;
}

.form-feedback {
  margin-top: 0.85rem;
  border-radius: 10px;
  border: 1px solid transparent;
  padding: 0.7rem 0.8rem;
  font-size: 0.89rem;
  line-height: 1.45;
  font-weight: 500;
}

.form-feedback.is-error {
  border-color: rgba(167, 58, 43, 0.32);
  background: rgba(167, 58, 43, 0.08);
  color: #872e21;
}

.form-feedback.is-info {
  border-color: rgba(31, 45, 69, 0.18);
  background: rgba(31, 45, 69, 0.06);
  color: #22344f;
}

.form-feedback.is-success {
  border-color: rgba(31, 157, 87, 0.3);
  background: rgba(31, 157, 87, 0.1);
  color: #157445;
}

.form-success {
  margin-top: 0.85rem;
  color: var(--success);
  font-weight: 600;
}

.contact-form.is-submitting .btn[type="submit"],
.contact-form .btn[type="submit"][disabled],
.contact-form .btn[type="submit"][aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.78;
  transform: none;
  box-shadow: 0 8px 16px rgba(20, 31, 48, 0.12);
}

body.thankyou-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

@media (max-width: 980px) {
  .contact-page-grid {
    grid-template-columns: 1fr;
  }
}

.thankyou-main {
  flex: 1;
  padding-top: clamp(7.9rem, 13vh, 9.6rem);
  padding-bottom: clamp(3rem, 5vh, 4.2rem);
}

.thankyou-section {
  padding-block: 0.5rem;
}

.thankyou-card {
  max-width: 760px;
  margin-inline: auto;
  border-radius: 20px;
  border: 1px solid var(--line-soft-strong);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  padding: clamp(1.5rem, 3.5vw, 2.3rem);
  text-align: center;
}

.thankyou-card .section__kicker {
  text-align: center;
}

.thankyou-card h1 {
  margin: 0.65rem 0 0.8rem;
  color: #17243b;
  font-size: clamp(1.58rem, 3.7vw, 2.3rem);
  line-height: 1.2;
}

.thankyou-card p {
  margin: 0;
  color: #5a6680;
}

.thankyou-card .btn {
  margin-top: 1.3rem;
}

.thankyou-check {
  width: 92px;
  height: 92px;
  margin: 0 auto 0.35rem;
  display: grid;
  place-items: center;
  animation: thankyouPulse 0.5s var(--ease) 0.15s both;
}

.thankyou-check svg {
  width: 100%;
  height: 100%;
}

.thankyou-check__circle {
  fill: rgba(31, 157, 87, 0.08);
  stroke: rgba(31, 157, 87, 0.92);
  stroke-width: 4;
  stroke-dasharray: 220;
  stroke-dashoffset: 220;
  animation: thankyouStroke 0.72s var(--ease) forwards;
}

.thankyou-check__path {
  fill: none;
  stroke: #1f9d57;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 66;
  stroke-dashoffset: 66;
  animation: thankyouStroke 0.48s var(--ease) 0.48s forwards;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 46px;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.75rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), background 0.22s var(--ease), color 0.22s var(--ease), border-color 0.22s var(--ease);
}

.btn--primary {
  color: #121212;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 10px 22px rgba(242, 154, 46, 0.28);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(242, 154, 46, 0.32);
}

.btn--ghost {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.06);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  transform: translateY(-3px);
  border-color: var(--accent);
  color: var(--accent);
}

.btn--ghost-dark {
  color: #25344d;
  border-color: rgba(23, 32, 51, 0.22);
  background: #ffffff;
}

.btn--ghost-dark:hover,
.btn--ghost-dark:focus-visible {
  transform: translateY(-3px);
  color: var(--accent);
  border-color: rgba(242, 154, 46, 0.52);
}

/* Premium Footer */
.site-footer {
  position: relative;
  color: #ffffff;
  background:
    radial-gradient(620px 280px at 8% 4%, rgba(242, 154, 46, 0.09), transparent 72%),
    radial-gradient(480px 220px at 92% 10%, rgba(255, 255, 255, 0.05), transparent 74%),
    #0b0f14;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.site-footer__main {
  padding-block: clamp(4.4rem, 7vw, 5.5rem);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.38fr) repeat(3, minmax(0, 1fr));
  gap: clamp(1.6rem, 3.4vw, 2.8rem);
}

.site-footer h3 {
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #ffffff;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer li {
  margin: 0;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  transition:
    color 0.22s var(--ease),
    opacity 0.22s var(--ease),
    transform 0.22s var(--ease),
    border-color 0.22s var(--ease),
    background 0.22s var(--ease),
    box-shadow 0.22s var(--ease);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--accent);
}

.site-footer__brand,
.site-footer__col {
  position: relative;
  border-radius: 18px;
  padding: 1.15rem 1.15rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background:
    radial-gradient(circle at 10% 12%, rgba(242, 154, 46, 0.08), transparent 52%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.site-footer__brand::after,
.site-footer__col::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.06), transparent 55%);
  opacity: 0.9;
}

.site-footer__brand > *,
.site-footer__col > * {
  position: relative;
  z-index: 1;
}

.site-footer__logo {
  display: inline-flex;
  width: auto;
  max-width: 240px;
  margin-bottom: 0.9rem;
}

.site-footer__logo img {
  max-height: 60px;
  width: auto;
  height: auto;
  max-width: 100%;
}

.site-footer__bio {
  max-width: 42ch;
  line-height: 1.72;
  margin-bottom: 1.4rem;
}

.site-footer__quick {
  display: grid;
  gap: 0.62rem;
}

.site-footer__quick h3 {
  margin-bottom: 0.2rem;
  font-size: 0.95rem;
}

.site-footer__quick-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: fit-content;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.8);
}

.site-footer__quick-link svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
}

.site-footer__hours {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.58);
}

.site-footer__links {
  display: grid;
  gap: 0.28rem;
}

.site-footer__links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  line-height: 1.35;
  width: fit-content;
  opacity: 0.88;
}

.site-footer__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 8px;
  width: 100%;
  height: 1px;
  background: rgba(242, 154, 46, 0.84);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.22s var(--ease);
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible {
  opacity: 1;
}

.site-footer__links a:hover::after,
.site-footer__links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-footer__note {
  margin-top: 0.86rem;
  max-width: 28ch;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.58);
}

.site-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.site-footer__social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: #ffffff;
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 0 rgba(242, 154, 46, 0);
}

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

.site-footer__social-link:hover,
.site-footer__social-link:focus-visible {
  transform: translateY(-2px);
  color: var(--accent);
  border-color: rgba(242, 154, 46, 0.66);
  background: rgba(242, 154, 46, 0.1);
  box-shadow: 0 0 0 4px rgba(242, 154, 46, 0.12);
}

.site-footer__whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.58rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(242, 154, 46, 0.64);
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  background: transparent;
}

.site-footer__whatsapp-btn:hover,
.site-footer__whatsapp-btn:focus-visible {
  transform: translateY(-2px);
  background: rgba(242, 154, 46, 0.14);
  box-shadow: 0 8px 18px rgba(242, 154, 46, 0.22);
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.16);
}

.site-footer__bottom-inner {
  min-height: 66px;
  padding-block: 0.85rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

.site-footer__copyright {
  grid-column: 2;
  margin: 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.87rem;
}

.site-footer__creator {
  grid-column: 3;
  justify-self: end;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.85rem;
}

.site-footer__creator a {
  color: rgba(255, 255, 255, 0.84);
}

.site-footer__creator a:hover,
.site-footer__creator a:focus-visible {
  color: var(--accent);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: transform 0.72s var(--ease), opacity 0.72s var(--ease);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

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

@keyframes thankyouStroke {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes thankyouPulse {
  from {
    transform: scale(0.92);
    opacity: 0.15;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 980px) {
  .top-bar__inner {
    gap: 0.56rem;
  }

  .top-bar__left {
    gap: 0.42rem;
  }

  .top-bar__right {
    margin-left: auto;
  }

  .top-bar__text,
  .lang-switcher__label {
    display: none;
  }

  .top-bar__link {
    width: 31px;
    height: 31px;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.07);
  }

  .site-header.is-scrolled .top-bar__link {
    border-color: rgba(23, 32, 51, 0.17);
    background: rgba(23, 32, 51, 0.05);
  }

  .top-bar__icon {
    width: 14px;
    height: 14px;
  }

  .lang-switcher__toggle {
    min-height: 31px;
    min-width: 44px;
    justify-content: center;
    padding: 0.3rem 0.44rem;
  }

  .lang-switcher__menu {
    min-width: 144px;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 0.35rem);
    right: 1rem;
    width: min(360px, calc(100vw - 2rem));
    border-radius: 14px;
    overflow: hidden;
    max-height: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(11, 15, 20, 0.95);
    box-shadow: var(--shadow-dark);
    transition: max-height 0.25s var(--ease), padding 0.25s var(--ease);
  }

  .site-header.is-scrolled .main-nav {
    border-color: rgba(23, 32, 51, 0.12);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 12px 30px rgba(22, 32, 46, 0.14);
  }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .main-nav a {
    display: block;
    padding: 0.8rem 1rem;
  }

  .main-nav a::after {
    display: none;
  }

  .main-nav.is-open {
    max-height: min(520px, calc(100vh - 140px));
    max-height: min(520px, calc(100dvh - 140px));
    padding-block: 0.32rem;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  .nav-toggle {
    display: inline-block;
  }

  .about__grid,
  .about-story__grid,
  .service-offer-card,
  .cta-band__inner {
    grid-template-columns: 1fr;
  }

  .cta-band__actions {
    justify-items: start;
    text-align: left;
  }

  .cta-band__actions p {
    justify-content: flex-start;
  }

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

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

  .service-offer-card:nth-child(even) .service-offer-card__media,
  .service-offer-card:nth-child(even) .service-offer-card__content {
    order: initial;
  }

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

  .represented-brands {
    --brand-logo-card-width: 176px;
    --brand-logo-card-height: 120px;
    --brand-logo-media-height: 88px;
    --brand-logo-gap: 1.1rem;
  }

  .brands-carousel {
    padding-inline: 2.6rem;
  }

  .catalogue-filter__header {
    align-items: flex-start;
    flex-direction: column;
  }

  .catalogue-toolbar {
    grid-template-columns: 1fr;
  }

  .catalogue-sort {
    min-width: 0;
  }

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

  .catalogue-contact-cta__inner {
    grid-template-columns: 1fr;
  }

  .catalogue-contact-cta__actions {
    text-align: left;
  }

  .catalogue-contact-cta__actions p {
    justify-content: flex-start;
  }

  .faq-layout,
  .careers-jobs__grid {
    grid-template-columns: 1fr;
  }

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

  .site-footer__brand {
    grid-column: 1 / -1;
  }

  .site-footer__brand,
  .site-footer__col {
    padding: 1rem 1rem 1.05rem;
    border-radius: 16px;
  }

  .site-footer__bottom-inner {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 0.4rem;
  }

  .site-footer__copyright,
  .site-footer__creator {
    grid-column: auto;
    justify-self: start;
    text-align: left;
  }

  .careers-values__grid,
  .careers-process__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalogue-modal__dialog {
    grid-template-columns: 1fr;
    max-height: min(92vh, 920px);
  }

  .catalogue-modal__media img {
    max-height: 42vh;
  }
}

@media (max-width: 700px) {
  .top-bar__inner {
    min-height: 38px;
    justify-content: center;
  }

  .top-bar__left,
  .top-bar__right {
    gap: 0.34rem;
  }

  .top-bar__right {
    margin-left: 0;
  }

  .hero {
    min-height: 84vh;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .services__grid,
  .about-solutions__grid,
  .benefits-list,
  .stats-grid,
  .form-grid,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .career-job__summary {
    flex-direction: column;
    align-items: stretch;
  }

  .career-job__chevron {
    align-self: flex-end;
    margin-top: 0;
  }

  .brand {
    width: 132px;
  }

  .represented-brands {
    --brand-logo-card-width: 160px;
    --brand-logo-card-height: 116px;
    --brand-logo-media-height: 84px;
    --brand-logo-gap: 0.95rem;
  }

  .brands-carousel {
    padding-inline: 2.35rem;
  }

  .brands-carousel::before,
  .brands-carousel::after {
    width: 28px;
  }

  .brands-carousel__nav {
    width: 38px;
    height: 38px;
    font-size: 1.35rem;
  }

  .catalogue-filter__buttons {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.25rem;
    scrollbar-width: thin;
  }

  .catalogue-search__field input {
    padding-right: 0.82rem;
  }

  .catalogue-search__clear {
    position: static;
    transform: none;
    margin-top: 0.4rem;
  }

  .catalogue-hero__stats,
  .catalogue-product-grid {
    grid-template-columns: 1fr;
  }

  .inner-hero {
    min-height: 48vh;
  }

  .careers-values__grid,
  .careers-process__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__main {
    padding-block: 4rem 3.5rem;
  }

  .site-footer__logo img {
    max-height: 54px;
  }

  .site-footer__brand,
  .site-footer__col {
    padding: 0.95rem 0.95rem 1.02rem;
  }

  .site-footer__links a {
    min-height: 44px;
  }

  .site-footer__social-link {
    width: 44px;
    height: 44px;
  }

  .about-story__media img {
    min-height: 280px;
  }

  .service-offer-card__media img {
    min-height: 230px;
  }

  .catalogue-modal {
    padding: 0.62rem;
  }

  .catalogue-modal__body {
    gap: 0.65rem;
  }
}

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

  * {
    transition: none !important;
    animation: none !important;
  }

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