/* ═══════════════════════════════════════════════════════
   ROOT TOKENS
═══════════════════════════════════════════════════════ */
:root {
  --c-black: #0f1a31;
  --c-primary: #0f2742;
  --c-accent: #5da9e9;
  --c-white: #ffffff;

  --font: "Bricolage Grotesque", "Manrope", sans-serif;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --dur: 0.3s;
  --dur-slow: 0.5s;

  --header-h: 88px;
  --wrap: 1320px;
  --px: clamp(20px, 5vw, 60px);
}

/* ═══════════════════════════════════════════════════════
   RESET
═══════════════════════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);

  color: var(--c-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

/* ═══════════════════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--px);
}

/* ═══════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background var(--dur) var(--ease),
    color var(--dur) var(--ease),
    border-color var(--dur) var(--ease),
    transform var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
}

/* White button — for dark-background sections (header, hero) */
.btn--quote {
  background: var(--c-white);
  color: var(--c-black);
  padding: 11px 20px;
  font-size: 14px;
  border: 1.5px solid var(--c-white);
  letter-spacing: 0.01em;
}
.btn--quote:hover {
  background: transparent;
  color: var(--c-white);
}

.btn--hero {
  background: var(--c-white);
  color: var(--c-black);
  padding: 14px 32px;
  border: 2px solid var(--c-white);
  margin-top: 40px;
}
.btn--hero:hover {
  background: var(--c-accent);
  border-color: var(--c-accent);
  color: var(--c-white);
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(93, 169, 233, 0.4);
}

/* ═══════════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════════ */
.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--header-h);
}

/* Mobile menu open — transparent so dark logo is readable on white overlay */
.header.is-menu-open {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* ── Logo ── */
.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.header__logo img {
  height: 44px;
  width: auto;
}

.logo--dark {
  display: none;
}

.header.is-menu-open .logo--light {
  display: none;
}
.header.is-menu-open .logo--dark {
  display: block;
}

/* ── Right section wrapper ── */
.header__right {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ── Nav + Quote glass container ── */
.header__nav-pill {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 6px;
}

/* ── Nav ── */
.header__nav {
  display: flex;
  align-items: center;
}

.nav__link {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.72);
  padding: 13px 16px;
  border-radius: 10px;
  white-space: nowrap;
  transition:
    color var(--dur) var(--ease),
    background var(--dur) var(--ease);
}
.nav__link:hover {
  color: var(--c-white);
  background: rgba(255, 255, 255, 0.09);
}

/* ── Lang switcher ── */
.lang-switcher {
  position: relative;
}

.lang-switcher__btn {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 17px 20px;
  color: var(--c-white);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition:
    background var(--dur) var(--ease),
    border-color var(--dur) var(--ease);
}
.lang-switcher__btn:hover {
  background: rgba(93, 169, 233, 0.13);
  border-color: rgba(93, 169, 233, 0.35);
}

.lang-switcher__arrow {
  flex-shrink: 0;
  opacity: 0.75;
  transition: transform var(--dur) var(--ease);
}
.lang-switcher.is-open .lang-switcher__arrow {
  transform: rotate(180deg);
}

.lang-switcher__dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 10;
  min-width: 84px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 2px;

  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.96);
  transform-origin: top right;
  transition:
    opacity var(--dur) var(--ease),
    visibility var(--dur) var(--ease),
    transform var(--dur) var(--ease);
}
.lang-switcher.is-open .lang-switcher__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.lang-switcher__option {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.5);
  padding: 9px 16px;
  border-radius: 12px;
  text-align: center;
  transition:
    background var(--dur) var(--ease),
    color var(--dur) var(--ease);
}
.lang-switcher__option:hover {
  background: rgba(93, 169, 233, 0.1);
  color: var(--c-white);
}
.lang-switcher__option.is-active {
  color: var(--c-accent);
  background: rgba(93, 169, 233, 0.1);
}

/* ── Burger ── */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex-shrink: 0;
  position: relative;
  z-index: 201;
  transition: background var(--dur) var(--ease);
}
.burger:hover {
  background: rgba(255, 255, 255, 0.08);
}
.burger.is-open:hover {
  background: rgba(0, 0, 0, 0.06);
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-white);
  border-radius: 2px;
  transition:
    transform 0.38s var(--ease),
    opacity 0.22s var(--ease),
    background 0.22s var(--ease);
}

.burger.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  background: var(--c-black);
}
.burger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.burger.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  background: var(--c-black);
}

/* ═══════════════════════════════════════════════════════
   MOBILE MENU
═══════════════════════════════════════════════════════ */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 190;
  background: var(--c-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--header-h) 32px 64px;

  opacity: 0;
  visibility: hidden;
  transition:
    opacity var(--dur-slow) var(--ease),
    visibility var(--dur-slow) var(--ease);
}
.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin-bottom: 64px;
}

.mobile-menu__link {
  font-size: clamp(26px, 7vw, 34px);
  font-weight: 600;
  color: var(--c-black);
  padding: 10px 28px;
  border-radius: 100px;
  letter-spacing: -0.01em;
  opacity: 0;
  transform: translateY(18px);
  transition:
    color var(--dur) var(--ease),
    background var(--dur) var(--ease),
    opacity 0.42s var(--ease),
    transform 0.42s var(--ease);
}
.mobile-menu.is-open .mobile-menu__link {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu.is-open .mobile-menu__link:nth-child(1) {
  transition-delay: 0.08s;
}
.mobile-menu.is-open .mobile-menu__link:nth-child(2) {
  transition-delay: 0.14s;
}
.mobile-menu.is-open .mobile-menu__link:nth-child(3) {
  transition-delay: 0.2s;
}
.mobile-menu.is-open .mobile-menu__link:nth-child(4) {
  transition-delay: 0.26s;
}

.mobile-menu__link:hover,
.mobile-menu__link.is-active {
  color: var(--c-accent);
}

.mobile-menu__langs {
  display: flex;
  gap: 10px;
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.42s var(--ease) 0.32s,
    transform 0.42s var(--ease) 0.32s;
}
.mobile-menu.is-open .mobile-menu__langs {
  opacity: 1;
  transform: translateY(0);
}

.mobile-lang-btn {
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(15, 26, 49, 0.38);
  padding: 11px 24px;
  border-radius: 100px;
  border: 1.5px solid rgba(15, 26, 49, 0.14);
  transition:
    color var(--dur) var(--ease),
    border-color var(--dur) var(--ease),
    background var(--dur) var(--ease);
}
.mobile-lang-btn:hover {
  color: var(--c-black);
  border-color: rgba(15, 26, 49, 0.28);
}
.mobile-lang-btn.is-active {
  color: var(--c-accent);
  border-color: var(--c-accent);
  background: rgba(93, 169, 233, 0.07);
}

/* ═══════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: min(876px, 100vh);
  display: flex;
  flex-direction: column;
}

.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 16, 32, 0.45) 0%,
    rgba(10, 16, 32, 0.4) 45%,
    rgba(10, 16, 32, 0.65) 100%
  );
}

.hero__content {
  flex: 1;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-block: var(--header-h) 40px;
}

.hero__eyebrow {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.24em;
  color: rgba(255, 255, 255, 0.62);
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hero__title {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: -0.025em;
  color: var(--c-white);
  text-transform: uppercase;
  max-width: 14ch;
}

.hero__subtitle {
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.72);
  max-width: 500px;
  line-height: 1.65;
  margin-top: 28px;
}

/* ── Hero tags bar ── */
.hero__tags {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  padding: 28px 0 30px;
}

.hero__tags-track {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: clamp(15px, 1.5vw, 20px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
}

.hero__sep {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1em;
  line-height: 1;
}

/* ═══════════════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════════════ */
.about {
  background: #f4f7fb;
  padding: 96px 0;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(48px, 8vw, 120px);
  row-gap: 48px;
  align-items: start;
}

/* ── Shared image wrapper (overflow hidden + border-radius) ── */
.about__img-wrap {
  border-radius: 30px;
  overflow: hidden;
}

/* ── Image box: positions badge OUTSIDE the overflow-hidden wrap ── */
.about__img-box {
  position: relative;
}

.about__img-wrap--portrait {
  aspect-ratio: 3 / 4;
  width: 80%;
}

.about__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ── Left column ── */
.about__left {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.about__img-box > .about__img-wrap {
  aspect-ratio: 4 / 5;
}

/* Badge — sits outside the overflow-hidden image wrap */
.about__badge {
  position: absolute;
  bottom: 70px;
  right: -32px;
  background: var(--c-white);
  border-radius: 20px;
  padding: 18px 28px;
  box-shadow: 0 16px 48px rgba(15, 26, 49, 0.16);
}

.about__badge-since {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: rgba(15, 26, 49, 0.45);
  letter-spacing: 0.03em;
  margin-bottom: 6px;
}

.about__badge-year {
  display: block;
  font-size: 52px;
  font-weight: 600;
  color: var(--c-black);
  line-height: 1;
  letter-spacing: -0.03em;
}

/* Left text block */
.about__left-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about__subtitle {
  font-size: clamp(18px, 1.8vw, 26px);
  font-weight: 600;
  color: var(--c-black);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.about__desc {
  font-size: 15px;
  font-weight: 400;
  color: rgba(15, 26, 49, 0.6);
  line-height: 1.75;
}

.about__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* Dark button — for light-background sections */
.btn--dark {
  background: var(--c-primary);
  color: var(--c-white);
  padding: 14px 32px;
  border: 2px solid var(--c-primary);
}
.btn--dark:hover {
  background: var(--c-black);
  border-color: var(--c-black);
}

.btn--outline-dark {
  background: transparent;
  color: var(--c-black);
  padding: 14px 32px;
  border: 1.5px solid rgba(15, 26, 49, 0.25);
}
.btn--outline-dark:hover {
  border-color: var(--c-black);
  background: rgba(15, 26, 49, 0.06);
}

/* ── Right column ── */
.about__right {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.about__title {
  font-size: clamp(28px, 3.2vw, 52px);
  font-weight: 600;
  color: var(--c-black);
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.about__title-accent {
  color: var(--c-accent);
}

.about__text {
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 400;
  color: rgba(15, 26, 49, 0.6);
  line-height: 1.8;
}

.about__stats {
  display: flex;
  gap: 52px;
}

.about__stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.about__stat-num {
  font-size: clamp(44px, 4.5vw, 68px);
  font-weight: 600;
  color: var(--c-black);
  letter-spacing: -0.03em;
  line-height: 1;
}

.about__stat-label {
  font-size: 14px;
  font-weight: 400;
  color: rgba(15, 26, 49, 0.5);
  line-height: 1.4;
}

/* ═══════════════════════════════════════════════════════
   FEATURES
═══════════════════════════════════════════════════════ */
.features {
  position: relative;
  padding: 88px 0 72px;
}

.features__bg {
  position: absolute;
  inset: 0;
}

.features__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.features__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 16, 32, 0.5) 0%,
    rgba(10, 16, 32, 0.65) 50%,
    rgba(10, 16, 32, 0.78) 100%
  );
}

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

.features__header {
  max-width: 720px;
  margin-bottom: 72px;
}

.features__eyebrow {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.58);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.features__title {
  font-size: clamp(34px, 4.2vw, 60px);
  font-weight: 600;
  color: var(--c-white);
  line-height: 1.06;
  letter-spacing: -0.022em;
}

/* ── Cards ── */
.features__cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.features__card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 192px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  transition:
    background var(--dur) var(--ease),
    border-color var(--dur) var(--ease);
}

.features__card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
}

.features__icon {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
  opacity: 0.88;
}

.features__label {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.45;
}

/* ═══════════════════════════════════════════════════════
   INTEGRATED SOLUTIONS
═══════════════════════════════════════════════════════ */
.integrated {
  background: #f4f7fb;
  padding: 96px 0;
}

.integrated__heading {
  text-align: center;
  font-size: clamp(32px, 3.8vw, 52px);
  font-weight: 600;
  color: var(--c-black);
  letter-spacing: -0.022em;
  line-height: 1.1;
  margin-bottom: 56px;
}

.integrated__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.integrated__card {
  display: flex;
  align-items: stretch;
  background: var(--c-white);
  border: 1px solid rgba(15, 26, 49, 0.07);
  border-radius: 30px;
  padding: 10px;
  gap: 24px;
  transition:
    box-shadow var(--dur) var(--ease),
    border-color var(--dur) var(--ease),
    transform var(--dur) var(--ease);
}

.integrated__card:hover {
  border-color: rgba(15, 26, 49, 0.15);
  box-shadow: 0 12px 44px rgba(15, 26, 49, 0.09);
  transform: translateY(-3px);
}

.integrated__left {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 12px;
}

.integrated__num {
  font-size: clamp(64px, 6vw, 96px);
  font-weight: 600;
  color: rgba(15, 26, 49, 0.08);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 4px;
  flex-shrink: 0;
}

.integrated__title {
  font-size: clamp(18px, 1.8vw, 26px);
  font-weight: 600;
  color: var(--c-black);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.integrated__desc {
  font-size: 14px;
  font-weight: 400;
  color: rgba(15, 26, 49, 0.55);
  line-height: 1.65;
  margin-top: auto;
}

.integrated__photo-wrap {
  width: clamp(160px, 18vw, 220px);
  flex-shrink: 0;
  border-radius: 25px;
  overflow: hidden;
  align-self: stretch;
}

.integrated__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ═══════════════════════════════════════════════════════
   PARTNERS
═══════════════════════════════════════════════════════ */
.partners {
  background: #f4f6f9;
  padding: 36px 0;
  overflow: hidden;
}

.partners__swiper {
  overflow: visible;
}

.partners__list {
  align-items: center;
}

.partners__slide {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
}

.partners__name {
  font-size: 20px;
  font-weight: 500;
  color: #b5bdc8;
  white-space: nowrap;
  user-select: none;
  transition: color var(--dur) var(--ease);
}
.partners__name:hover {
  color: #8d97a5;
}

/* Per-brand adjustments */
.partners__name[data-brand="google"] {
  font-weight: 400;
  font-size: 22px;
}
.partners__name[data-brand="microsoft"] {
  font-weight: 400;
}
.partners__name[data-brand="nvidia"] {
  font-weight: 700;
  letter-spacing: 0.04em;
}
.partners__name[data-brand="ibm"] {
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 22px;
}
.partners__name[data-brand="aws"] {
  font-weight: 400;
  font-size: 24px;
}
.partners__name[data-brand="intel"] {
  font-weight: 300;
  font-size: 22px;
}
.partners__name[data-brand="oracle"] {
  font-weight: 400;
  letter-spacing: 0.06em;
}
.partners__name[data-brand="ericsson"] {
  font-weight: 400;
}
.partners__name[data-brand="vmware"] {
  font-weight: 400;
  font-size: 18px;
}

/* ═══════════════════════════════════════════════════════
   INDUSTRIES
═══════════════════════════════════════════════════════ */
.industries {
  background: #f4f6f9;
  padding: 88px 0 80px;
  overflow: hidden;
}

.industries__heading {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 600;
  color: var(--c-primary);
  letter-spacing: -0.03em;
  text-align: center;
  margin-bottom: 52px;
}

/* Full-bleed track */
.industries__track {
  width: 100%;
  padding-left: var(--px);
}

.industries__swiper {
  overflow: visible;
}

/* Slide sizing */
.industries__slide {
  width: 240px;
  align-self: flex-start;
}

.industries__slide--tall {
  height: 365px;
}

.industries__slide--short {
  height: 250px;
  margin-top: 80px;
}

/* Card */
.industries__card {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
}

.industries__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s var(--ease);
}

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

.industries__card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 18px 18px;
  background: linear-gradient(
    to top,
    rgba(10, 18, 40, 0.85) 0%,
    rgba(10, 18, 40, 0.2) 70%,
    transparent 100%
  );
}

.industries__card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--c-white);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.industries__card-desc {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.55;
  margin-top: 6px;
}

/* Footer CTA */
.industries__footer {
  display: flex;
  justify-content: center;
  margin-top: 52px;
}

/* ═══════════════════════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════════════════════ */
.cta-banner {
  position: relative;
  overflow: hidden;
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-banner__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.cta-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 50, 0.78);
}

.cta-banner__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: clamp(72px, 10vw, 120px);
  padding-bottom: clamp(72px, 10vw, 120px);
  gap: 20px;
}

.cta-banner__title {
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 700;
  color: var(--c-white);
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 820px;
}

.cta-banner__subtitle {
  font-size: clamp(14px, 1.4vw, 18px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.6;
  max-width: 600px;
  margin-top: 4px;
}

/* CTA banner button — white bg, accent text, large */
.cta-banner__btn {
  margin-top: 16px;
  padding: 11px 22px;
  background: var(--c-white);
  color: var(--c-accent);
  font-size: 16px;
  border: 2px solid var(--c-white);
}

.cta-banner__btn:hover {
  background: transparent;
  color: var(--c-white);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════════ */
.contact {
  position: relative;
  padding: 100px 0 110px;
  overflow: hidden;
}

.contact__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.contact__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.contact__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10, 18, 38, 0.2) 0%,
    rgba(10, 18, 38, 0.32) 55%,
    rgba(10, 18, 38, 0.4) 100%
  );
}

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

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: clamp(48px, 6vw, 96px);
  align-items: flex-start;
}

/* Left column */
.contact__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 20px;
}

.contact__title {
  font-size: clamp(32px, 4vw, 58px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--c-white);
  margin-bottom: 24px;
}

.contact__desc {
  font-size: clamp(14px, 1.3vw, 16px);
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  max-width: 440px;
}

/* Glass form card */
.contact__card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  padding: 18px 12px;
}

.contact__form-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--c-white);
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.contact__input,
.contact__textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 14px 18px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 400;
  color: var(--c-white);
  outline: none;
  transition:
    border-color var(--dur) var(--ease),
    background var(--dur) var(--ease);
}

.contact__input::placeholder,
.contact__textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.contact__input:focus,
.contact__textarea:focus {
  border-color: rgba(93, 169, 233, 0.5);
  background: rgba(255, 255, 255, 0.11);
}

.contact__textarea {
  resize: vertical;
  min-height: 100px;
}

/* File row */
.contact__file-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact__file-input {
  display: none;
}

.contact__file-btn {
  flex-shrink: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  padding: 10px 16px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  color: var(--c-white);
  transition:
    background var(--dur) var(--ease),
    border-color var(--dur) var(--ease);
  white-space: nowrap;
}

.contact__file-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.28);
}

.contact__file-name {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Submit */
.contact__submit {
  width: 100%;
  padding: 16px;
  background: var(--c-accent);
  border: none;
  border-radius: 12px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  color: var(--c-white);
  cursor: pointer;
  letter-spacing: -0.01em;
  transition:
    background var(--dur) var(--ease),
    transform var(--dur) var(--ease);
  margin-top: 4px;
}

.contact__submit:hover {
  background: #4a96d6;
  transform: translateY(-1px);
}

.contact__submit:active {
  transform: translateY(0);
}

/* Privacy note */
.contact__privacy {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.5;
  text-align: center;
}

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
.footer {
  background: var(--c-primary);
  color: var(--c-white);
  overflow: hidden;
}

/* Marquee brand text */
.footer__brand {
  padding: clamp(36px, 4vw, 60px) 0 0;
  overflow: hidden;
}

.footer__marquee {
  display: flex;
  align-items: center;
  width: max-content;
  animation: footer-marquee 32s linear infinite;
}

.footer__marquee:hover {
  animation-play-state: paused;
}

@keyframes footer-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-33.333%); }
}

@media (prefers-reduced-motion: reduce) {
  .footer__marquee {
    animation: none;
  }
}

.footer__brand-text {
  font-size: clamp(48px, 6.5vw, 72px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--c-white);
  white-space: nowrap;
}

.footer__marquee-sep {
  font-size: clamp(18px, 2.5vw, 32px);
  color: var(--c-accent);
  padding: 0 clamp(20px, 3vw, 52px);
  flex-shrink: 0;
  line-height: 1;
}

/* Three-column grid */
.footer__body {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: clamp(32px, 4vw, 52px);
  padding-top: clamp(40px, 5vw, 60px);
  padding-bottom: clamp(48px, 6vw, 72px);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
}

.footer__col-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--c-white);
  text-decoration: underline;
  text-underline-offset: 5px;
  margin-bottom: 24px;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__link {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--dur) var(--ease);
}
.footer__link:hover {
  color: var(--c-white);
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

/* Bottom bar */
.footer__bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  padding-bottom: 22px;
}

.footer__copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}

.footer__legal {
  display: flex;
  gap: 32px;
}

.footer__legal-link {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  transition: color var(--dur) var(--ease);
}
.footer__legal-link:hover {
  color: var(--c-white);
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
  :root {
    --header-h: 76px;
  }

  .nav__link {
    padding: 10px 11px;
    font-size: 13px;
  }
  .btn--quote {
    padding: 10px 16px;
    font-size: 13px;
  }

  .about {
    padding: 72px 0;
  }
  .about__grid {
    gap: 36px;
  }
  .about__badge-year {
    font-size: 42px;
  }
  .about__stats {
    gap: 36px;
  }

  /* Features: 3 cols on tablet */
  .features__cards {
    grid-template-columns: repeat(3, 1fr);
  }
  .features__header {
    margin-bottom: 52px;
  }

  /* Integrated */
  .integrated {
    padding: 72px 0;
  }
  .integrated__photo-wrap {
    width: clamp(130px, 15vw, 180px);
  }

  /* Contact */
  .contact__grid {
    grid-template-columns: 1fr 400px;
    gap: 48px;
  }

  /* Industries */
  .industries__slide--tall {
    height: 320px;
  }
  .industries__slide--short {
    height: 220px;
    margin-top: 60px;
  }
  .industries__slide {
    width: 210px;
  }
}

/* Mobile */
@media (max-width: 860px) {
  :root {
    --header-h: 72px;
  }

  .header__right {
    display: none;
  }
  .burger {
    display: flex;
  }

  .hero {
    height: 100svh;
    min-height: 560px;
  }

  .hero__eyebrow {
    letter-spacing: 0.16em;
    font-size: 11px;
  }

  .about__img-wrap--portrait {
    width: 100%;
  }

  /* Industries */
  .industries {
    padding: 72px 0 64px;
  }
  .industries__heading {
    margin-bottom: 40px;
  }
  .industries__slide {
    width: 180px;
  }
  .industries__slide--tall {
    height: 290px;
  }
  .industries__slide--short {
    height: 200px;
    margin-top: 50px;
  }

  /* Footer: 2 cols + 1 on tablet */
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer__col:last-child {
    grid-column: 1 / -1;
  }

  /* Contact: stack on mobile */
  .contact {
    padding: 80px 0 90px;
  }
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .contact__desc {
    max-width: 100%;
  }
  .contact__card {
    padding: 32px 28px;
  }
}

@media (max-width: 768px) {
  .about {
    padding: 64px 0;
  }
  .about__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  /* Show right (heading) first on mobile */
  .about__right {
    order: -1;
  }

  .about__img-box > .about__img-wrap {
    aspect-ratio: 3 / 2;
  }
  /* Badge stays inside photo on mobile — no overflow */
  .about__badge {
    bottom: 16px;
    right: 16px;
  }
  .about__badge-year {
    font-size: 36px;
  }
}

/* Integrated: 1 col on tablet */
@media (max-width: 860px) {
  .integrated__grid {
    grid-template-columns: 1fr;
  }
  .integrated__card {
    padding: 28px 20px 28px 28px;
  }
  .integrated__photo-wrap {
    width: clamp(140px, 30vw, 200px);
  }
}

/* Features: 2 cols on small tablet / large mobile */
@media (max-width: 680px) {
  .features {
    padding: 64px 0 56px;
  }
  .features__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .features__header {
    margin-bottom: 40px;
  }
  .features__card {
    min-height: 170px;
    padding: 20px;
  }
}

/* Features: 1 col on very small mobile */
@media (max-width: 380px) {
  .features__cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  :root {
    --header-h: 64px;
  }

  .about__stats {
    gap: 28px;
  }

  .about__actions {
    flex-direction: column;
  }
  .about__actions .btn {
    text-align: center;
    justify-content: center;
  }

  /* Integrated: vertical card on small mobile */
  .integrated {
    padding: 56px 0;
  }
  .integrated__heading {
    margin-bottom: 36px;
  }
  .integrated__grid {
    gap: 14px;
  }
  .integrated__card {
    flex-direction: column;
    padding: 24px;
    gap: 20px;
  }
  .integrated__photo-wrap {
    width: 100%;
    height: 200px;
    align-self: auto;
  }
  .integrated__num {
    font-size: 56px;
  }

  .hero__tags-track {
    gap: 10px 14px;
    font-size: 13px;
  }
  .hero__sep {
    display: none;
  }

  .hero__tags-track span[data-i18n] {
    padding: 3px 12px;
  }

  .btn--hero {
    padding: 14px 32px;
  }

  /* CTA banner */
  .cta-banner__btn {
    padding: 15px 40px;
    font-size: 15px;
  }

  /* Footer: single column on small screens */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer__col:last-child {
    grid-column: auto;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  /* Industries: smaller cards on phone */
  .industries__slide {
    width: 155px;
  }
  .industries__slide--tall {
    height: 255px;
  }
  .industries__slide--short {
    height: 175px;
    margin-top: 40px;
  }
  .industries__footer {
    margin-top: 40px;
  }

  /* Contact: single-col row on small screens */
  .contact__row {
    grid-template-columns: 1fr;
  }
  .contact {
    padding: 64px 0 72px;
  }
  .contact__card {
    padding: 28px 20px;
  }
}

@media (max-width: 360px) {
  .mobile-menu__link {
    font-size: 22px;
  }
}
