:root {
  --bg: #f5f5f6;
  --ink: #0e0f11;
  --muted: #5d626a;
  --brand: #b21f2d;
  --brand-strong: #8e1722;
  --accent: #b21f2d;
  --accent-strong: #8e1722;
  --surface: #ffffff;
  --surface-muted: #f2f2f3;
  --surface-dark: #0f0f10;
  --surface-dark-2: #171819;
  --border: rgba(0, 0, 0, 0.1);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  --radius-lg: 26px;
  --radius-md: 16px;
  --radius-sm: 10px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: none;
}


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

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

a:hover {
  color: var(--brand);
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.section {
  padding: clamp(40px, 6vw, 80px) 0;
  position: relative;
  isolation: isolate;
}

.hero-stats + .section::before,
.section + .section::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  width: 90px;
  height: 2px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.12);
  opacity: 0.6;
  transform: translateX(-50%);
  pointer-events: none;
}

section {
  scroll-margin-top: 110px;
}

.section-title {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  margin: 12px 0 18px;
  letter-spacing: -0.02em;
}

.section-title--center {
  text-align: center;
  position: relative;
  padding-bottom: 16px;
}

.section-title--center::after {
  content: "";
  width: 56px;
  height: 3px;
  background: var(--brand);
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 600;
}

.section-kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--brand);
}

.section-subtitle {
  color: var(--muted);
  max-width: 680px;
  font-size: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn--primary {
  background: var(--brand);
  color: #ffffff;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.28);
}

.btn--primary:hover {
  background: #ffffff;
  color: #111111;
  transform: translateY(-2px);
}

.btn--ghost {
  background: #ffffff;
  border-color: var(--border);
  color: var(--ink);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: #fff;
  background: linear-gradient(180deg, rgba(10, 10, 11, 0.98) 0%, rgba(14, 14, 15, 0.92) 100%);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-header.is-scrolled {
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
  background: linear-gradient(180deg, rgba(8, 8, 9, 0.99) 0%, rgba(12, 12, 13, 0.96) 100%);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand__logo {
  height: 56px;
  width: auto;
}

.custom-logo {
  height: 56px;
  width: auto;
  display: block;
}

.brand__name {
  display: none;
}

.custom-logo-link {
  display: block;
  line-height: 0;
}

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

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.nav-doc-link {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(178, 31, 45, 0.45);
  background: rgba(178, 31, 45, 0.12);
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.nav-doc-link:hover {
  color: #ffffff;
  background: rgba(178, 31, 45, 0.26);
  border-color: rgba(178, 31, 45, 0.7);
}

.lang-switch__link {
  color: inherit;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.lang-switch__link.is-active {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
}

.lang-switch__link:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.25);
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.nav__list a {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.02);
  position: relative;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.nav__list a:hover {
  color: #ffffff;
  background: rgba(178, 31, 45, 0.16);
  border-color: rgba(178, 31, 45, 0.38);
}

.nav__list a::after {
  content: "";
  position: absolute;
  left: 12px;
  bottom: 4px;
  width: calc(100% - 24px);
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav__list a:hover::after,
.nav__list a:focus-visible::after {
  transform: scaleX(1);
}

.scroll-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.scroll-progress__bar {
  display: block;
  height: 100%;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, rgba(178, 31, 45, 0.86) 0%, rgba(234, 77, 90, 0.96) 100%);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  font-size: 0;
  color: transparent;
  background:
    linear-gradient(#ffffff 0 0) center 13px / 20px 2px,
    linear-gradient(#ffffff 0 0) center 21px / 20px 2px,
    linear-gradient(#ffffff 0 0) center 29px / 20px 2px;
  background-repeat: no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  cursor: pointer;
}

.hero {
  position: relative;
  padding: 0 0 60px;
  background: none;
}

.hero__carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
  align-items: center;
}

.hero__content {
  grid-column: 1 / span 7;
}

.hero__media {
  grid-column: 8 / span 5;
  position: relative;
}

.hero__media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  width: 100%;
  height: auto;
}

.carousel {
  position: relative;
}

.carousel__track {
  position: relative;
  height: clamp(240px, 38vw, 420px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.carousel__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 1;
}

.carousel__slide.is-active {
  opacity: 1;
  z-index: 2;
}

.carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
  z-index: 0;
}

.carousel__caption {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: clamp(36px, 8vw, 80px) 0;
  color: #ffffff;
  pointer-events: auto;
  z-index: 1;
}

.carousel__control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 22px;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.carousel__control--prev {
  left: 14px;
}

.carousel__control--next {
  right: 14px;
}

.carousel__dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 14px;
}

.carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  background: rgba(0, 0, 0, 0.25);
  cursor: pointer;
}

.carousel__dot.is-active {
  background: var(--brand);
}

.hero__carousel {
  position: relative;
}

.hero__carousel::before,
.hero__carousel::after {
  content: none;
}

.hero__carousel::before {
  top: 0;
  left: 0;
}

.hero__carousel::after {
  top: 0;
  right: 0;
}

.hero__carousel .carousel__track {
  height: clamp(380px, 65vw, 760px);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: none;
}

.hero__carousel .carousel__track::before {
  content: none;
}

.hero__content {
  max-width: 720px;
  pointer-events: auto;
}

.hero__actions {
  pointer-events: auto;
}

.hero__highlights {
  pointer-events: auto;
}

.hero__carousel .carousel__dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 0;
  z-index: 2;
}

.hero__carousel .carousel__control {
  z-index: 2;
}

.intro {
  display: grid;
  gap: 18px;
  margin-top: 24px;
  padding: clamp(22px, 4vw, 34px);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

.intro p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.intro::before {
  content: none;
}

.intro p {
  position: relative;
  z-index: 1;
}

.intro--enhanced {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  padding: 0;
  background: transparent;
  box-shadow: none;
  gap: 14px;
  align-items: stretch;
}

.intro__aside {
  display: grid;
  gap: 16px;
  align-content: start;
}

.intro--enhanced::before {
  display: none;
}

.intro__panel {
  background: #121212;
  color: #ffffff;
  padding: clamp(18px, 3vw, 26px);
  border-radius: 26px;
  position: relative;
  overflow: hidden;
}

.intro__panel::after {
  content: none;
}

.intro__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
}

.intro__eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--brand);
}

.intro__panel p {
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 1;
}

.intro__metrics {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 8px;
  position: relative;
  z-index: 1;
}

.intro__metric {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 10px;
  display: grid;
  gap: 6px;
}

.intro__metric strong {
  font-size: 18px;
}

.intro__metric span {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.intro__content {
  display: grid;
  gap: 12px;
  background: #ffffff;
  border-radius: 26px;
  padding: clamp(18px, 3vw, 26px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.06);
}

.intro__content p {
  color: var(--muted);
}

.certificates {
  margin-top: 24px;
  display: grid;
  gap: 12px;
}

.certificates__title {
  margin: 0;
  font-size: 20px;
}

.certificates__subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.certificate-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.certificate-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 14px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  color: inherit;
  text-align: center;
  align-items: stretch;
  height: 100%;
  min-height: 336px;
}

.certificate-card img {
  width: 100%;
  height: 168px;
  object-fit: contain;
  object-position: center top;
  border-radius: 12px;
  background: #f6f6f6;
  padding: 8px;
}

.certificate-card__text {
  flex: 1;
  display: grid;
  grid-template-rows: 2.4em 4em;
  align-items: start;
  justify-items: center;
  gap: 8px;
}

.certificate-card span {
  align-self: start;
  display: block;
  font-weight: 600;
  font-size: 15px;
  color: #111111;
  line-height: 1.2;
  margin: 0;
}

.certificate-card small {
  align-self: start;
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.3;
  margin: 0;
}

.terms-section {
  padding-top: clamp(96px, 12vw, 132px);
}

.terms-actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.terms-viewer {
  margin-top: 18px;
  width: 100%;
  min-height: 76vh;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 18px;
  background: #ffffff;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(178, 31, 45, 0.18);
  color: #fff;
  border: 1px solid rgba(178, 31, 45, 0.4);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.hero h1 {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(40px, 5.2vw, 72px);
  line-height: 1.05;
  margin: 18px 0 16px;
  color: #ffffff;
}

.hero h2 {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(30px, 4.4vw, 56px);
  line-height: 1.08;
  margin: 18px 0 16px;
  color: #ffffff;
}

.hero p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  max-width: 620px;
}

.hero__actions {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__highlights {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.highlight {
  background: transparent;
  border-radius: var(--radius-md);
  padding: 0 0 0 14px;
  border-left: 2px solid rgba(178, 31, 45, 0.75);
}

.highlight strong {
  display: block;
  font-size: 16px;
  margin-bottom: 6px;
  color: #ffffff;
}

.highlight span {
  color: rgba(255, 255, 255, 0.75);
}

.cards {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.division-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 36px;
  align-items: stretch;
}

.division {
  background: rgba(255, 255, 255, 0.94);
  border-radius: 24px;
  padding: 24px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.division::before {
  content: none;
}

.division__media {
  position: relative;
  z-index: 1;
}

.division img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  transition: transform 0.35s ease, opacity 0.45s ease;
}

.division img.is-fading {
  opacity: 0;
}

.division__groups {
  display: grid;
  gap: 14px;
}

.division__group-title {
  margin: 8px 0 8px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #111111;
  min-height: 34px;
  display: flex;
  align-items: center;
}

.division__group .list {
  margin: 0;
}

.division__note {
  margin-top: 16px;
  color: var(--muted);
  font-weight: 600;
}

.division h3 {
  margin: 0 0 12px;
  font-size: 22px;
  position: relative;
  z-index: 1;
}

.division h3::after {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  background: var(--brand);
  margin-top: 8px;
}

.division .list {
  position: relative;
  z-index: 1;
}

.division:hover img {
  transform: scale(1.02);
}

.division__cta {
  margin-top: auto;
  padding-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--brand);
}

.division__cta::after {
  content: "→";
  font-size: 16px;
}

.division-gallery {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 110px;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.division-gallery a {
  display: block;
}

.division-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.division-gallery a:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.division-gallery a:nth-child(4) {
  grid-row: span 2;
}

.tech-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.tech-carousels {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.tech-carousel-block {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 20px;
  padding: 18px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.tech-carousel-block h3 {
  margin: 0 0 12px;
  font-size: 18px;
}

.section-actions--left {
  justify-content: flex-start;
}

.photo-carousel--compact {
  margin-top: 0;
}

.photo-carousel--compact .photo-carousel__slide {
  flex: 0 0 min(300px, 78vw);
}

.photo-carousel--compact .photo-carousel__slide img {
  height: 210px;
}

.section-title-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.section-title-link:hover,
.section-title-link:focus-visible {
  color: var(--brand);
  border-color: var(--brand);
}

.tech-card {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 24px;
  padding: 22px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.tech-card img {
  width: 100%;
  height: clamp(180px, 24vw, 260px);
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 16px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.tech-card h3 {
  margin: 6px 0 12px;
  font-size: 20px;
}

.tech-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.tech-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.tech-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--brand);
  margin-top: 7px;
  flex: none;
}

.value-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.value-card {
  background: rgba(255, 255, 255, 0.94);
  border-radius: 20px;
  padding: 22px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-left: 2px solid rgba(178, 31, 45, 0.65);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
  position: relative;
}

.value-card::before {
  content: "";
  width: 46px;
  height: 2px;
  background: var(--brand);
  display: block;
  margin-bottom: 12px;
}

.value-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.value-card p {
  margin: 0;
  color: var(--muted);
}

.photo-carousel {
  position: relative;
  margin-top: 28px;
}

.photo-carousel__viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

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

.photo-carousel__track {
  display: flex;
  gap: 18px;
  padding: 6px 4px 18px;
}

.photo-carousel__slide {
  flex: 0 0 min(360px, 82vw);
  scroll-snap-align: start;
}

.photo-carousel__slide img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.photo-carousel__control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(0, 0, 0, 0.55);
  color: #ffffff;
  font-size: 22px;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 2;
}

.photo-carousel__control--prev {
  left: -8px;
}

.photo-carousel__control--next {
  right: -8px;
}

.section-actions {
  margin-top: 22px;
  display: flex;
  justify-content: center;
}

.reference-carousel {
  margin-top: 24px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 26px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

.reference-carousel::before {
  content: none;
}

.reference-track {
  display: grid;
}

.reference-slide {
  grid-area: 1 / 1;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
  display: grid;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.reference-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.reference-icon {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 600;
}

.reference-slide p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(16px, 2.2vw, 20px);
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.reference-controls {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.reference-control {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #ffffff;
  color: #111111;
  font-size: 20px;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.reference-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  flex: 1;
}

.reference-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  background: rgba(0, 0, 0, 0.2);
}

.reference-dot.is-active {
  background: var(--brand);
}

.lightbox-link {
  display: block;
  color: inherit;
}

.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 5, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 9999;
}

.lightbox-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  position: relative;
  max-width: min(1100px, 92vw);
  max-height: 86vh;
  width: 100%;
  display: grid;
  gap: 12px;
}

.lightbox-image {
  width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  background: #0c0c0c;
}

.lightbox-caption {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.75);
  color: #ffffff;
  font-size: 20px;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  font-size: 22px;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.lightbox-prev {
  left: -10px;
}

.lightbox-next {
  right: -10px;
}

@media (max-width: 640px) {
  .lightbox-prev {
    left: 6px;
  }

  .lightbox-next {
    right: 6px;
  }
}

.list--compact {
  gap: 8px;
}

.card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 22px;
  padding: 24px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-top: 2px solid rgba(178, 31, 45, 0.65);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card::before {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  background: var(--brand);
  margin-bottom: 12px;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.12);
}

.card h3 {
  margin: 14px 0 10px;
  font-size: 20px;
}

.card p {
  color: var(--muted);
}

.icon {
  width: fit-content;
  height: auto;
  border-radius: 999px;
  background: rgba(178, 31, 45, 0.12);
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 6px 12px;
}

.split {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
  align-items: flex-start;
}

.split__content .list {
  gap: 8px;
}

.split__content .list li {
  padding: 6px 10px;
  line-height: 1.45;
}

.split__media {
  grid-column: 1 / span 6;
  position: relative;
}

.split__content {
  grid-column: 7 / span 6;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 24px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  position: relative;
}

.split__media img {
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  position: relative;
  z-index: 1;
}

.split__media::before {
  content: "";
  position: absolute;
  inset: 12px auto auto 12px;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(178, 31, 45, 0.3);
  z-index: 0;
}

.list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.7);
  padding: 8px 12px;
  border-radius: 12px;
}

.list li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--brand);
  margin-top: 7px;
  flex: none;
}

.references {
  margin-top: 22px;
  position: relative;
  padding-left: 26px;
}

.references::before {
  content: none;
}

.references li {
  background: transparent;
  padding: 4px 0 4px 8px;
  border-radius: 0;
}

.references li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--brand);
  margin-top: 7px;
  flex: none;
  box-shadow: 0 0 0 6px rgba(178, 31, 45, 0.12);
}

.section--alt {
  background: #f0f2f4;
}

.section--art::before {
  content: none;
}

.hero-stats {
  margin-top: -40px;
  padding-bottom: 40px;
}

.hero-stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px;
  background: #101010;
  color: #ffffff;
  border-radius: 28px;
  padding: clamp(18px, 3vw, 28px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

.hero-stats__grid::before {
  content: none;
}

.hero-stat {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 6px;
  padding: 8px 12px;
}

.hero-stat span {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.hero-stat strong {
  font-size: clamp(20px, 3.4vw, 36px);
  line-height: 1;
}

.hero-stat em {
  font-style: normal;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

@media (min-width: 1100px) {
  .division-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .division h3 {
    min-height: 64px;
  }
}

@media (min-width: 980px) {
  .intro {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro p:first-child {
    grid-column: 1 / -1;
    font-size: 18px;
  }
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 32px;
  grid-auto-rows: 160px;
  grid-auto-flow: dense;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: none;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.gallery__item a {
  display: block;
  height: 100%;
}

.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery__item:hover img {
  transform: scale(1.05);
}

.gallery__item:hover::after {
  opacity: 0.35;
}

.gallery__item:nth-child(1) {
  grid-row: span 2;
}

.gallery__item:nth-child(2) {
  grid-row: span 2;
}

.callout {
  background: #111111;
  border-radius: var(--radius-lg);
  padding: clamp(28px, 6vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  gap: 16px;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  color: #ffffff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.callout::before {
  content: none;
}

.callout .section-title {
  color: #ffffff;
}

.callout .section-subtitle {
  color: rgba(255, 255, 255, 0.72);
}

.contact {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: clamp(28px, 6vw, 48px);
  background: #101010;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/contact.webp") center/cover no-repeat;
  opacity: 0.28;
  z-index: 0;
}

.contact::after {
  content: none;
}

.contact > * {
  position: relative;
  z-index: 1;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 22px;
}

.contact-card {
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
}

.contact-layout {
  margin-top: 26px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 26px;
}

.contact-layout--single {
  grid-template-columns: 1fr;
}

.contact-footer {
  margin-top: 26px;
  display: grid;
  gap: 16px;
}

.contact-footer__title {
  font-size: 16px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.contact-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.contact-info {
  display: grid;
  gap: 18px;
}

.contact-people {
  display: grid;
  gap: 14px;
}

.contact-person {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  display: grid;
  gap: 6px;
}

.contact-person h3 {
  margin: 0;
  font-size: 18px;
  color: #ffffff;
}

.contact-person span {
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
}

.contact-person a {
  color: #ffffff;
  font-weight: 600;
}

.contact-form {
  background: #ffffff;
  color: #111111;
  border-radius: 24px;
  padding: clamp(16px, 3vw, 24px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  display: grid;
  gap: 14px;
}

.form-notice {
  margin: 0;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 600;
}

.form-notice--success {
  background: rgba(22, 163, 74, 0.12);
  color: #166534;
}

.form-notice--error {
  background: rgba(185, 28, 28, 0.12);
  color: #991b1b;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.form-field {
  display: grid;
  gap: 6px;
}

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

.form-field label {
  font-size: 12px;
  font-weight: 600;
  color: #111111;
}

.form-field input,
.form-field select,
.form-field textarea {
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 14px;
  font-family: inherit;
}

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

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.form-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.7);
}

.form-check input {
  margin-top: 4px;
}

.site-footer {
  padding: 40px 0 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--surface-dark);
  color: #ffffff;
  position: relative;
}

.site-footer::before {
  content: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 22px;
}

.footer-nav {
  display: grid;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-person {
  display: grid;
  gap: 4px;
}

.footer-person strong {
  color: #ffffff;
  font-weight: 600;
}

.footer-person span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.site-footer a {
  color: rgba(255, 255, 255, 0.7);
}

.site-footer a:hover {
  color: var(--brand);
}

.cookie-manage {
  margin-left: 12px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  cursor: pointer;
}

.cookie-manage:hover {
  border-color: var(--brand);
  color: #ffffff;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  background: rgba(15, 15, 15, 0.95);
  color: #ffffff;
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

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

.cookie-banner__content {
  display: grid;
  gap: 6px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.cookie-banner__content a {
  color: #ffffff;
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.contact-person a,
.footer-nav a,
.footer-nav span,
.section-subtitle,
.list li {
  overflow-wrap: anywhere;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 16px;
  background: #fff;
  color: #000;
  padding: 8px 12px;
  border-radius: 8px;
  z-index: 100;
}

.skip-link:focus {
  left: 16px;
}

.wp-block-image img {
  border-radius: var(--radius-md);
}

.entry-content {
  color: var(--muted);
  line-height: 1.7;
  font-size: 17px;
}

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

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

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

  .form-grid {
    grid-template-columns: 1fr;
  }

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

  .lang-switch {
    width: 100%;
    justify-content: flex-end;
    margin-top: 10px;
  }

  .nav-doc-link {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
  }

  .hero-stats {
    margin-top: 0;
    padding-top: 20px;
  }

  .hero-stats__grid {
    border-radius: 18px;
  }

  .division-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 120px;
  }

  .division-gallery a:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
  }

  .division-gallery a:nth-child(4) {
    grid-row: span 1;
  }

  .carousel__caption {
    position: relative;
    background: #0b0b0b;
    padding: 32px 0 48px;
    pointer-events: auto;
  }

  .hero__carousel .carousel__track {
    height: clamp(260px, 55vw, 420px);
    border-radius: 0;
  }

  .hero__carousel .carousel__dots {
    position: static;
    transform: none;
    margin-top: 16px;
  }

  .photo-carousel__control--prev,
  .photo-carousel__control--next {
    display: none;
  }

  .tech-carousels {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    grid-template-columns: 1fr;
  }

  .hero__content,
  .hero__media {
    grid-column: auto;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .split__media,
  .split__content {
    grid-column: auto;
  }

  .nav {
    display: none;
  }

  .nav.is-open {
    display: block;
  }

  .nav__list {
    flex-direction: column;
    align-items: flex-start;
    background: rgba(8, 8, 8, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-top: 12px;
  }

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

@media (max-width: 640px) {
  .site-header__inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 0;
  }

  .brand__logo,
  .custom-logo {
    height: 42px;
  }

  .nav-doc-link {
    font-size: 12px;
    padding: 8px 10px;
  }

  .division-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }

  .division-gallery a:nth-child(1),
  .division-gallery a:nth-child(4) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }

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

  .form-actions {
    align-items: stretch;
  }

  .photo-carousel__slide img {
    height: 200px;
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
