:root {
  --ink: #101116;
  --ink-2: #171923;
  --paper: #f7f8fb;
  --muted: #6f7483;
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(16, 17, 22, 0.1);
  --red: #e51d24;
  --red-dark: #5d080d;
  --red-deep: #260507;
  --white: #ffffff;
  --max: 1180px;
  --radius: 8px;
}

@font-face {
  font-family: "sow-elegantline";
  src: url("../assets/fonts/elegantline.woff") format("woff"), url("../assets/fonts/elegantline.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f7f8fb;
  color: #101116;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.section-dark {
  background: #101116;
  color: #ffffff;
}

.section-light {
  background: #ffffff;
  color: #101116;
}

.eyebrow,
.section-kicker {
  margin: 0 0 20px;
  color: #e51d24;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.44fr);
  gap: 54px;
  align-items: end;
  margin-bottom: 46px;
}
.section-heading h2 {
  margin: 0;
  line-height: 0.98;
  letter-spacing: 0;
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
}
.section-heading p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
}
.section-heading__side {
  display: grid;
  gap: 20px;
  justify-items: start;
}
.section-heading__side .button {
  width: fit-content;
}

.section-light .section-heading p {
  color: #6f7483;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px max(24px, (100vw - 1180px) / 2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 11, 15, 0.94);
  backdrop-filter: blur(20px);
  transition: background 0.25s ease, border-color 0.25s ease, padding 0.25s ease;
}
.site-header.is-scrolled {
  padding-top: 13px;
  padding-bottom: 13px;
  background: rgba(8, 8, 10, 0.98);
  border-color: rgba(229, 29, 36, 0.26);
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 700;
}
.site-nav a {
  transition: color 0.2s ease;
}
.site-nav a:hover {
  color: #ffffff;
}
.site-nav a[aria-current=page] {
  color: #ffffff;
}

.language-switcher {
  display: inline-flex;
  gap: 2px;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}
.language-switcher button {
  min-width: 36px;
  height: 30px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.74rem;
  font-weight: 900;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.language-switcher button.is-active, .language-switcher button:hover {
  background: #e51d24;
  color: #ffffff;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: #ffffff;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 800;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.button:hover {
  transform: translateY(-2px);
}
.button--primary {
  background: linear-gradient(135deg, #5d080d, #e51d24);
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(229, 29, 36, 0.32);
}
.button--ghost {
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.photo-card {
  position: absolute;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #08080a;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.46);
  overflow: hidden;
}
.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.08);
}
.photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 36%, rgba(8, 8, 10, 0.92));
}
.photo-card figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
}
.photo-card figcaption span,
.photo-card .interface-card span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.78rem;
  font-weight: 900;
}
.photo-card figcaption strong {
  display: block;
  color: #ffffff;
  font-size: 1.55rem;
  line-height: 1.05;
}
.photo-card--large {
  inset: 2% 4% auto auto;
  width: 72%;
  height: 430px;
  transform: rotate(10deg);
}
.photo-card--left {
  left: 0;
  bottom: 12%;
  width: 245px;
  height: 300px;
  transform: rotate(-12deg);
}

.interface-card {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 230px;
  min-height: 280px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(145deg, rgba(10, 11, 15, 0.96), rgba(38, 5, 7, 0.94) 58%, rgba(93, 8, 13, 0.92)), repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 18px);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.44);
  transform: rotate(15deg);
}
.interface-card span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.78rem;
  font-weight: 900;
}
.interface-card strong {
  display: block;
  color: #ffffff;
  font-size: 1.55rem;
  line-height: 1.05;
}
.interface-card small {
  display: block;
  margin-top: 32px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.qr {
  width: 86px;
  height: 86px;
  margin-top: 58px;
  border: 10px solid #ffffff;
  background: linear-gradient(90deg, #ffffff 12px, transparent 12px), linear-gradient(#ffffff 12px, transparent 12px), #101116;
  background-size: 28px 28px;
}

.hero {
  position: relative;
  min-height: 94vh;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(24px, 1fr) minmax(0, calc(1180px * 0.53)) minmax(360px, calc(1180px * 0.47)) minmax(24px, 1fr);
  column-gap: 40px;
  align-items: center;
  padding: 72px 0 52px;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(10, 11, 15, 0.92) 0%, rgba(10, 11, 15, 0.72) 48%, rgba(10, 11, 15, 0.28) 100%), radial-gradient(circle at 18% 18%, rgba(229, 29, 36, 0.32), transparent 28%), radial-gradient(circle at 82% 20%, rgba(93, 8, 13, 0.6), transparent 34%), linear-gradient(135deg, #08080a 0%, #101116 48%, #260507 100%);
}
.hero__bg::before, .hero__bg::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.hero__bg::before {
  width: 560px;
  height: 560px;
  left: -150px;
  top: -180px;
  background: rgba(255, 255, 255, 0.04);
}
.hero__bg::after {
  width: 420px;
  height: 420px;
  right: 9%;
  bottom: 4%;
  background: rgba(255, 255, 255, 0.035);
}
.hero__content, .hero__metrics {
  grid-column: 2;
}
.hero__visual {
  grid-column: 3;
}
.hero__content {
  max-width: 680px;
  padding-top: 34px;
  position: relative;
  z-index: 2;
}
.hero h1 {
  margin: 0;
  line-height: 0.98;
  letter-spacing: 0;
  font-weight: 900;
  max-width: 100%;
  font-size: clamp(3rem, 6.4vw, 5.4rem);
  text-wrap: balance;
  overflow-wrap: anywhere;
}
.hero__lead {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.12rem;
  line-height: 1.7;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.hero__visual {
  position: relative;
  width: 100%;
  height: clamp(430px, 58vh, 620px);
  min-height: 430px;
  pointer-events: none;
}
.hero__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 720px;
  margin-top: 72px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
}
.hero__metrics div {
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}
.hero__metrics strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
}
.hero__metrics span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
  line-height: 1.4;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-block: 1px solid rgba(16, 17, 22, 0.1);
  background: #ffffff;
}
.trust-band span {
  padding: 22px 18px;
  border-right: 1px solid rgba(16, 17, 22, 0.1);
  color: #6f7483;
  font-size: 0.82rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.intro {
  padding-inline: max(24px, (100vw - 1180px) / 2);
  padding-top: 110px;
  padding-bottom: 90px;
  background: linear-gradient(180deg, #f7f8fb, #ffffff), radial-gradient(circle at 100% 0%, rgba(229, 29, 36, 0.16), transparent 26%);
}
.intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.7fr);
  gap: 78px;
  align-items: start;
}
.intro h2 {
  margin: 0;
  line-height: 0.98;
  letter-spacing: 0;
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
}
.intro__copy {
  display: grid;
  gap: 22px;
  color: #3b3e48;
  font-size: 1.02rem;
  line-height: 1.8;
}
.intro__copy p {
  margin: 0;
}
.intro__copy a {
  color: inherit;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: rgba(229, 29, 36, 0.45);
  text-underline-offset: 4px;
}

.capabilities {
  padding-inline: max(24px, (100vw - 1180px) / 2);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding-top: 1px;
  padding-bottom: 1px;
  background: rgba(16, 17, 22, 0.1);
}
.capabilities article {
  min-height: 270px;
  padding: 34px;
  background: #ffffff;
}
.capabilities h3 {
  margin: 0;
  font-size: 1.05rem;
}
.capabilities p {
  margin: 14px 0 0;
  color: #6f7483;
  line-height: 1.65;
}

.capability-icon {
  display: block;
  min-height: 70px;
  margin-bottom: 34px;
  color: #e51d24;
  font-family: "sow-elegantline";
  font-size: 70px;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.capability-icon::before {
  content: attr(data-sow-icon);
}

.solutions {
  padding-inline: max(24px, (100vw - 1180px) / 2);
  padding-top: 112px;
  padding-bottom: 112px;
  overflow: hidden;
  background: radial-gradient(circle at 18% 8%, rgba(93, 8, 13, 0.42), transparent 28%), radial-gradient(circle at 88% 22%, rgba(229, 29, 36, 0.26), transparent 26%), #101116;
}

.solution-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 12px;
  margin-bottom: 18px;
}
.solution-tabs button {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}
.solution-tabs button.is-active {
  color: #ffffff;
  border-color: rgba(229, 29, 36, 0.62);
  background: linear-gradient(135deg, rgba(93, 8, 13, 0.96), rgba(229, 29, 36, 0.72));
}

.solution-stage {
  position: relative;
  min-height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)), repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 72px);
  overflow: hidden;
}

.solution-panel {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.55fr);
  gap: 42px;
  align-items: end;
  padding: 48px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}
.solution-panel.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.solution-panel span {
  color: #ff7479;
  font-size: 0.85rem;
  font-weight: 800;
}
.solution-panel h3 {
  margin: 14px 0 18px;
  font-size: clamp(2.4rem, 6vw, 5.8rem);
  line-height: 0.9;
  letter-spacing: 0;
}
.solution-panel p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.05rem;
  line-height: 1.7;
}
.solution-panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.solution-panel li {
  position: relative;
  padding: 16px 16px 16px 42px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}
.solution-panel li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 22px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e51d24;
}
.solution-panel a {
  color: inherit;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: rgba(229, 29, 36, 0.45);
  text-underline-offset: 4px;
}

.digital {
  padding-inline: max(24px, (100vw - 1180px) / 2);
  padding-top: 112px;
  padding-bottom: 112px;
  display: grid;
  grid-template-columns: minmax(300px, 0.66fr) minmax(0, 0.85fr);
  gap: 76px;
  align-items: center;
  background: radial-gradient(circle at 24% 44%, rgba(93, 8, 13, 0.14), transparent 26%), #f7f8fb;
}
.digital h2 {
  margin: 0;
  line-height: 0.98;
  letter-spacing: 0;
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
}
.digital__visual {
  min-height: 540px;
  display: grid;
  place-items: center;
}
.digital__content p {
  max-width: 640px;
  margin: 24px 0 0;
  color: #3b3e48;
  font-size: 1.04rem;
  line-height: 1.8;
}
.digital__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 620px;
  margin-top: 34px;
}
.digital__list span {
  padding: 15px 16px;
  border: 1px solid rgba(16, 17, 22, 0.1);
  border-radius: 8px;
  background: #ffffff;
  font-weight: 800;
}

.phone {
  width: min(300px, 78vw);
  height: 520px;
  padding: 18px;
  border: 12px solid #11131a;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 248, 251, 0.95)), linear-gradient(135deg, rgba(229, 29, 36, 0.15), rgba(93, 8, 13, 0.18));
  box-shadow: 0 32px 80px rgba(16, 17, 22, 0.22);
  transform: rotate(-8deg);
}
.phone > span {
  display: block;
  width: 74px;
  height: 6px;
  margin: 0 auto 34px;
  border-radius: 99px;
  background: #11131a;
}
.phone__ticket {
  min-height: 250px;
  padding: 24px;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(145deg, rgba(93, 8, 13, 0.94), rgba(229, 29, 36, 0.86)), repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px 16px);
}
.phone__ticket strong {
  display: block;
  font-size: 1.7rem;
  line-height: 1;
}
.phone__ticket small {
  display: block;
  margin-top: 150px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.78);
}
.phone__bar {
  height: 40px;
  margin-top: 18px;
  border-radius: 8px;
  background: #e9ebf2;
}
.phone__bar--short {
  width: 66%;
}

.portfolio {
  padding-inline: max(24px, (100vw - 1180px) / 2);
  padding-top: 108px;
  padding-bottom: 112px;
  overflow: hidden;
  background: radial-gradient(circle at 12% 0%, rgba(229, 29, 36, 0.1), transparent 30%), linear-gradient(180deg, #ffffff, #f7f8fb);
}
.portfolio .section-heading p {
  color: #6f7483;
}

.carousel-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.carousel-actions button {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(16, 17, 22, 0.1);
  border-radius: 8px;
  background: #ffffff;
  color: #101116;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.carousel-actions button:hover {
  transform: translateY(-2px);
}
.carousel-actions button:hover {
  background: rgba(229, 29, 36, 0.08);
  border-color: rgba(229, 29, 36, 0.46);
}

.logo-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-block: 1px solid rgba(16, 17, 22, 0.1);
  background: rgba(255, 255, 255, 0.76);
}
.logo-carousel::before, .logo-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: min(120px, 18vw);
  pointer-events: none;
}
.logo-carousel::before {
  left: 0;
  background: linear-gradient(90deg, #ffffff, transparent);
}
.logo-carousel::after {
  right: 0;
  background: linear-gradient(270deg, #f7f8fb, transparent);
}
.logo-carousel:hover .logo-track {
  animation-play-state: paused;
}

.logo-track {
  display: flex;
  width: max-content;
  animation: logo-marquee 58s linear infinite;
}

.logo-card {
  flex: 0 0 190px;
  height: 122px;
  display: grid;
  place-items: center;
  padding: 24px;
  border-right: 1px solid rgba(16, 17, 22, 0.1);
  background: rgba(255, 255, 255, 0.88);
}
.logo-card img {
  max-width: 128px;
  max-height: 72px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.88;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.logo-card:hover img {
  opacity: 1;
  transform: scale(1.04);
}

@keyframes logo-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.contact {
  padding-inline: max(24px, (100vw - 1180px) / 2);
  padding-top: 108px;
  padding-bottom: 96px;
  background: radial-gradient(circle at 82% 0%, rgba(229, 29, 36, 0.4), transparent 28%), linear-gradient(135deg, #101116, #120d0f 56%, #260507);
}
.contact h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1.18rem;
}
.contact-layout {
  display: block;
}
.contact-regions {
  display: grid;
  grid-template-columns: repeat(var(--contact-columns, 2), minmax(0, 1fr));
  gap: 18px;
}
.contact-regions article {
  display: grid;
  gap: 24px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}
.contact-regions article > span {
  color: #ff7479;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}
.contact-regions p {
  margin: 9px 0 8px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
}

.funding-bar {
  padding-inline: max(24px, (100vw - 1180px) / 2);
  display: flex;
  justify-content: center;
  padding-top: 22px;
  padding-bottom: 22px;
  border-top: 1px solid rgba(16, 17, 22, 0.1);
  background: #ffffff;
}
.funding-bar img {
  width: min(100%, 610px);
  height: auto;
  object-fit: contain;
}

.careers-page {
  background: #f7f8fb;
}

.careers-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(24px, 1fr) minmax(0, 1180px) minmax(24px, 1fr);
  padding: 108px 0 70px;
  isolation: isolate;
}
.careers-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(90deg, rgba(8, 8, 10, 0.94), rgba(16, 17, 22, 0.8) 45%, rgba(38, 5, 7, 0.42)), linear-gradient(135deg, #08080a 0%, #101116 52%, #260507 100%);
}
.careers-hero::after {
  content: "";
  position: absolute;
  right: max(24px, (100vw - 1180px) / 2);
  bottom: -100px;
  z-index: -1;
  width: min(45vw, 620px);
  height: 440px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: linear-gradient(rgba(229, 29, 36, 0.16), rgba(229, 29, 36, 0)), url("../assets/photos/event.jpg") center/cover;
  opacity: 0.72;
  transform: rotate(-8deg);
}
.careers-hero__inner {
  grid-column: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(320px, 0.32fr);
  gap: 46px;
  align-items: end;
}
.careers-hero h1 {
  margin: 0;
  line-height: 0.98;
  letter-spacing: 0;
  font-weight: 900;
  max-width: 760px;
  color: #ffffff;
  font-size: clamp(2.7rem, 6vw, 5.7rem);
  text-wrap: balance;
}
.careers-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.12rem;
  line-height: 1.72;
}

.careers-hero-card {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 24px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}
.careers-hero-card span {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}
.careers-hero-card strong {
  display: block;
  margin-top: 10px;
  font-size: 2.2rem;
  line-height: 1;
}
.careers-hero-card p:not(.eyebrow) {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.95rem;
}

.careers-layout {
  padding-inline: max(24px, (100vw - 1180px) / 2);
  padding-top: 76px;
  padding-bottom: 96px;
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}
.careers-layout.is-empty {
  grid-template-columns: 1fr;
}
.careers-layout.is-empty .job-list {
  position: static;
}
.careers-layout.is-empty .job-content {
  display: none;
}

.job-list {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 14px;
}

.job-filter,
.job-card,
.job-detail,
.application-panel {
  border: 1px solid rgba(16, 17, 22, 0.1);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 22px 60px rgba(16, 17, 22, 0.08);
}

.job-filter {
  padding: 18px;
}
.job-filter label {
  display: block;
  margin-bottom: 8px;
  color: #6f7483;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}
.job-filter input {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(16, 17, 22, 0.1);
  border-radius: 8px;
  color: #101116;
  background: #f7f8fb;
}

.careers-empty {
  border: 1px solid rgba(16, 17, 22, 0.1);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  min-height: 220px;
  padding: clamp(28px, 5vw, 48px);
  align-content: center;
  background: #ffffff;
  box-shadow: 0 22px 60px rgba(16, 17, 22, 0.08);
}
.careers-empty h2 {
  margin: 0;
  line-height: 0.98;
  letter-spacing: 0;
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
}
.careers-empty p {
  max-width: 620px;
  margin: 0;
  color: #6f7483;
  line-height: 1.7;
}

.job-card {
  display: grid;
  gap: 14px;
  padding: 20px;
  border-color: rgba(229, 29, 36, 0.26);
}
.job-card h2 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.25;
}
.job-card p:not(.eyebrow) {
  margin: 0;
  color: #6f7483;
  line-height: 1.55;
}

.job-meta,
.job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.job-meta span,
.job-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 800;
}

.job-meta span {
  color: #101116;
  background: #f7f8fb;
}

.job-tags span {
  color: #5d080d;
  background: rgba(229, 29, 36, 0.08);
}

.job-content {
  display: grid;
  gap: 22px;
}

.job-detail {
  padding: clamp(26px, 4vw, 46px);
}
.job-detail h2 {
  margin: 0;
  line-height: 0.98;
  letter-spacing: 0;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.6rem);
}
.job-detail h3 {
  margin: 38px 0 16px;
  font-size: 1.15rem;
}
.job-detail p {
  margin: 18px 0 0;
  color: #6f7483;
  line-height: 1.78;
}
.job-detail ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.job-detail li {
  position: relative;
  padding-left: 26px;
  color: #343845;
  line-height: 1.6;
}
.job-detail li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e51d24;
  box-shadow: 0 0 0 5px rgba(229, 29, 36, 0.12);
}

.job-detail__top {
  display: grid;
  gap: 18px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(16, 17, 22, 0.1);
}

.application-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(280px, 0.44fr);
  gap: 28px;
  padding: clamp(24px, 4vw, 38px);
  background: linear-gradient(135deg, #101116, #171923 48%, #260507), #101116;
  color: #ffffff;
}
.application-panel h2 {
  margin: 0;
  line-height: 0.98;
  letter-spacing: 0;
  font-weight: 900;
  font-size: clamp(1.9rem, 4vw, 3.2rem);
}
.application-panel p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.application-form {
  display: grid;
  gap: 12px;
}
.application-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.8rem;
  font-weight: 700;
}
.application-form input,
.application-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}
.application-form input {
  height: 44px;
  padding: 0 12px;
}
.application-form textarea {
  min-height: 92px;
  resize: vertical;
  padding: 12px;
}
.application-form input[type=file] {
  height: auto;
  padding: 11px;
}
.application-form small {
  color: rgba(255, 255, 255, 0.54);
  line-height: 1.45;
}

.application-status {
  min-height: 20px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.84rem;
}

@media (max-width: 860px) {
  .careers-hero {
    padding-top: 92px;
  }
  .careers-hero::after {
    width: 68vw;
    height: 300px;
    opacity: 0.38;
  }
  .careers-hero__inner {
    grid-template-columns: 1fr;
  }
  .careers-layout,
  .application-panel {
    grid-template-columns: 1fr;
  }
  .careers-layout {
    padding-top: 48px;
  }
  .job-list {
    position: static;
  }
}
@media (max-width: 560px) {
  .careers-hero h1 {
    font-size: 2.55rem;
  }
  .careers-hero-card strong {
    font-size: 1.8rem;
  }
  .job-detail,
  .application-panel {
    padding: 22px;
  }
}
.footer {
  padding-inline: max(24px, (100vw - 1180px) / 2);
  display: grid;
  gap: 26px;
  padding-top: 46px;
  padding-bottom: 30px;
  background: linear-gradient(180deg, #0f1015, #08080a), #0a0b0f;
  color: rgba(255, 255, 255, 0.58);
}
.footer__main, .footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.footer__main {
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__brand img {
  width: 168px;
}
.footer__brand p {
  margin: 0;
}
.footer__nav, .footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.footer__nav {
  justify-content: center;
  flex: 1 1 320px;
  font-size: 0.82rem;
  font-weight: 800;
}
.footer__links {
  font-size: 0.82rem;
  font-weight: 800;
}
.footer__nav a, .footer__links a {
  color: rgba(255, 255, 255, 0.56);
  transition: color 0.2s ease;
}
.footer__nav a:hover, .footer__links a:hover {
  color: #ffffff;
}
.footer__group {
  opacity: 0.76;
}
.footer__group img {
  width: 82px;
  height: auto;
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: minmax(24px, 1fr) minmax(0, calc(100vw - 48px)) minmax(24px, 1fr);
  }
  .hero__content,
  .hero__metrics {
    grid-column: 2;
  }
  .hero__visual {
    grid-column: 2;
    justify-self: end;
    width: min(100%, 520px);
    height: 430px;
    min-height: 430px;
    margin-top: 36px;
    opacity: 1;
    transform: none;
  }
  .capabilities,
  .contact-regions {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 860px) {
  .site-header {
    padding-inline: 18px;
  }
  .brand img {
    width: 148px;
  }
  .nav-toggle {
    display: block;
  }
  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    display: grid;
    gap: 0;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(16, 17, 22, 0.96);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }
  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .site-nav a {
    padding: 14px 12px;
  }
  .language-switcher {
    margin: 8px 8px 4px;
    width: fit-content;
  }
  .hero {
    min-height: auto;
    padding-top: 116px;
  }
  .hero__visual {
    position: relative;
    justify-self: stretch;
    width: 100%;
    height: 420px;
    min-height: 420px;
    margin-top: 42px;
    opacity: 1;
    transform: none;
  }
  .photo-card--large {
    width: min(76vw, 440px);
    right: 8%;
  }
  .photo-card--left,
  .interface-card {
    width: 190px;
    min-height: 230px;
  }
  .hero__metrics,
  .trust-band,
  .intro__grid,
  .section-heading,
  .solution-panel,
  .digital,
  .contact-regions {
    grid-template-columns: 1fr;
  }
  .trust-band {
    grid-template-columns: repeat(2, 1fr);
  }
  .intro,
  .solutions,
  .digital,
  .portfolio,
  .contact {
    padding-top: 78px;
    padding-bottom: 78px;
  }
  .solution-stage {
    min-height: 640px;
  }
  .solution-panel {
    align-items: start;
    padding: 30px;
  }
  .digital__visual {
    min-height: 440px;
  }
  .phone {
    height: 430px;
  }
  .phone__ticket {
    min-height: 190px;
  }
  .phone__ticket small {
    margin-top: 96px;
  }
  .carousel-actions {
    justify-content: flex-start;
  }
  .logo-card {
    flex-basis: 156px;
    height: 108px;
  }
}
@media (max-width: 560px) {
  .hero h1 {
    font-size: 2.78rem;
  }
  .hero__actions {
    display: grid;
  }
  .hero__metrics {
    grid-template-columns: 1fr;
  }
  .hero__visual {
    height: 360px;
    min-height: 360px;
  }
  .button {
    width: 100%;
  }
  .capabilities,
  .digital__list {
    grid-template-columns: 1fr;
  }
  .capabilities article {
    min-height: auto;
  }
  .photo-card--large {
    min-height: 350px;
    height: 350px;
    width: 86vw;
    right: -10%;
  }
  .photo-card--left {
    left: -20px;
  }
  .interface-card {
    display: none;
  }
  .footer {
    padding-block: 26px;
  }
  .footer__main, .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer__links {
    justify-content: flex-start;
    flex-wrap: wrap;
    flex-basis: auto;
  }
  .footer__group {
    justify-content: flex-start;
  }
}

/*# sourceMappingURL=styles.css.map */
