body {
  overflow-x: hidden;
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Helvetica,
    Arial,
    sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.container {
  width: min(calc(100% - 48px), var(--container-width));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 120px 0;
}

/* =========================================================
   Header
   ========================================================= */

.header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition:
    background var(--transition-base),
    border-color var(--transition-base),
    box-shadow var(--transition-base);
}

.header.is-scrolled {
  border-color: var(--color-line);
  background: rgba(247, 248, 251, 0.9);
  box-shadow: 0 8px 30px rgba(20, 31, 56, 0.04);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 36px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand__mark {
  width: 36px;
  height: 36px;
  position: relative;
  display: block;
  border-radius: 11px;
  background: var(--color-text);
}

.brand__mark::before,
.brand__mark::after {
  position: absolute;
  content: "";
  border: 2px solid #fff;
}

.brand__mark::before {
  inset: 9px 17px 9px 9px;
  border-right: 0;
  border-radius: 4px 0 0 4px;
}

.brand__mark::after {
  inset: 9px 9px 9px 17px;
  border-left: 0;
  border-radius: 0 4px 4px 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.nav__link {
  position: relative;
  color: var(--color-text-soft);
  font-size: 13px;
  font-weight: 650;
  transition: color var(--transition-fast);
}

.nav__link:hover {
  color: var(--color-text);
}

.nav__link::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--color-text);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-base);
}

.nav__link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 9px;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
}

.language-switcher__button {
  cursor: pointer;
  color: var(--color-text-soft);
  font-size: 11px;
  font-weight: 800;
  transition: color var(--transition-fast);
}

.language-switcher__button:hover,
.language-switcher__button.is-active {
  color: var(--color-primary);
}

.language-switcher__divider {
  color: rgba(16, 20, 27, 0.22);
  font-size: 11px;
}

.menu-button {
  display: none;
}

.mobile-menu {
  display: none;
}

/* =========================================================
   Hero
   ========================================================= */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + 72px) 0 90px;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: -260px;
  right: -180px;
  width: 800px;
  height: 800px;
  content: "";
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(49, 91, 216, 0.17),
    rgba(49, 91, 216, 0.06) 40%,
    transparent 70%
  );
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.95fr);
  gap: 80px;
  align-items: center;
}

.hero__content {
  position: relative;
  z-index: 2;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  color: var(--color-text-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-label__dot {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 0 7px var(--color-primary-soft);
}

.hero__title {
  max-width: 760px;
  font-size: clamp(58px, 6.6vw, 100px);
  font-weight: 750;
  line-height: 0.9;
  letter-spacing: -0.065em;
}

.hero__description {
  max-width: 650px;
  margin-top: 34px;
  color: var(--color-text-soft);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  gap: 14px;
  margin-top: 40px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 750;
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    background var(--transition-fast);
}

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

.button--primary {
  color: #fff;
  background: var(--color-text);
  box-shadow: 0 14px 34px rgba(16, 20, 27, 0.15);
}

.button--primary:hover {
  box-shadow: 0 20px 42px rgba(16, 20, 27, 0.22);
}

.button--secondary {
  border: 1px solid var(--color-line);
  background: rgba(255, 255, 255, 0.62);
}

/* =========================================================
   Hero visual
   ========================================================= */

.hero-visual {
  position: relative;
  min-height: 580px;
  display: grid;
  place-items: center;
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-visual__grid {
  position: absolute;
  inset: 40px 0;
  opacity: 0.38;
  background-image:
    linear-gradient(rgba(49, 91, 216, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(49, 91, 216, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle, #000 25%, transparent 72%);
  -webkit-mask-image: radial-gradient(circle, #000 25%, transparent 72%);
}

.hero-visual__orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(49, 91, 216, 0.13);
}

.hero-visual__orbit--outer {
  width: 500px;
  height: 500px;
}

.hero-visual__orbit--inner {
  width: 330px;
  height: 330px;
}

.hero-visual__sphere {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
}

.hero-visual__sphere--large {
  top: 11%;
  right: 6%;
  width: 88px;
  height: 88px;
  background: radial-gradient(
    circle at 30% 25%,
    #fff,
    #d9e2ff 35%,
    #496ad1 100%
  );
  box-shadow: 0 25px 55px rgba(49, 91, 216, 0.22);
}

.hero-visual__sphere--small {
  bottom: 18%;
  left: 5%;
  width: 26px;
  height: 26px;
  background: var(--color-primary);
  box-shadow: 0 0 0 11px rgba(49, 91, 216, 0.08);
}

.hero-visual__card {
  position: relative;
  z-index: 3;
  width: min(390px, 88%);
  min-height: 450px;
  padding: 38px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 42px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.97),
    rgba(229, 235, 255, 0.84)
  );
  box-shadow:
    0 50px 100px rgba(33, 49, 91, 0.17),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transform: rotate(4deg);
}

.hero-visual__card::before {
  position: absolute;
  right: -100px;
  bottom: -110px;
  width: 340px;
  height: 340px;
  content: "";
  border-radius: 50%;
  background: rgba(49, 91, 216, 0.08);
}

.hero-visual__logo {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  background: var(--color-text);
  font-size: 15px;
  font-weight: 850;
  letter-spacing: -0.03em;
}

.hero-visual__copy {
  position: absolute;
  z-index: 2;
  right: 38px;
  bottom: 44px;
  left: 38px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-visual__copy span {
  color: var(--color-text-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-visual__copy strong {
  max-width: 280px;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.055em;
}

.hero-visual__glass {
  position: absolute;
  z-index: 4;
  right: 3%;
  bottom: 11%;
  width: 150px;
  height: 80px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.35);
  box-shadow: 0 18px 45px rgba(35, 49, 83, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* =========================================================
   Shared section heading
   ========================================================= */

.section-heading {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 70px;
  align-items: start;
  margin-bottom: 64px;
}

.section-heading__index {
  padding-top: 9px;
  color: var(--color-text-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading__content h2,
.company__content h2 {
  max-width: 820px;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 730;
  line-height: 1;
  letter-spacing: -0.055em;
}

.section-heading__content p,
.company__content > p {
  max-width: 670px;
  margin-top: 28px;
  color: var(--color-text-soft);
  font-size: 17px;
  line-height: 1.72;
}

/* =========================================================
   About
   ========================================================= */

.section--about {
  background: var(--color-surface);
}

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.value-card {
  min-height: 290px;
  display: flex;
  flex-direction: column;
  padding: 32px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: var(--color-bg);
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base);
}

.value-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-md);
}

.value-card__number {
  color: var(--color-text-soft);
  font-size: 11px;
  font-weight: 800;
}

.value-card h3 {
  margin-top: auto;
  font-size: 26px;
  letter-spacing: -0.035em;
}

.value-card p {
  margin-top: 13px;
  color: var(--color-text-soft);
  font-size: 14px;
  line-height: 1.65;
}

/* =========================================================
   Expertise
   ========================================================= */

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

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.expertise-card {
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base);
}

.expertise-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-md);
}

.expertise-card__icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  color: var(--color-primary);
  background: var(--color-primary-soft);
  font-size: 20px;
  font-weight: 800;
}

.expertise-card h3 {
  font-size: 25px;
  letter-spacing: -0.035em;
}

.expertise-card p {
  margin-top: 14px;
  color: var(--color-text-soft);
  font-size: 14px;
  line-height: 1.65;
}

/* =========================================================
   Product
   ========================================================= */

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

.product-showcase {
  min-height: 560px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
  padding: 72px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: #fff;
  background:
    radial-gradient(
      circle at 86% 15%,
      rgba(88, 118, 226, 0.32),
      transparent 28%
    ),
    var(--color-dark);
  box-shadow: var(--shadow-md);
}

.product-showcase__content {
  position: relative;
  z-index: 2;
}

.product-showcase__label {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-showcase h2 {
  max-width: 680px;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 720;
  line-height: 1;
  letter-spacing: -0.055em;
}

.product-showcase p {
  max-width: 620px;
  margin-top: 27px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 16px;
  line-height: 1.7;
}

.product-showcase__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.product-showcase__tags span {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-weight: 700;
}

/* Phone illustration */

.product-showcase__visual {
  min-height: 430px;
  display: grid;
  place-items: center;
}

.product-phone {
  width: 220px;
  height: 440px;
  position: relative;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 38px;
  background: #080b10;
  box-shadow:
    0 45px 80px rgba(0, 0, 0, 0.32),
    0 0 0 7px rgba(255, 255, 255, 0.035);
  transform: rotate(6deg);
}

.product-phone__speaker {
  position: absolute;
  z-index: 5;
  top: 17px;
  left: 50%;
  width: 54px;
  height: 6px;
  border-radius: 999px;
  background: #151b25;
  transform: translateX(-50%);
}

.product-phone__screen {
  height: 100%;
  overflow: hidden;
  border-radius: 30px;
  background: #eef2f7;
}

.product-phone__header {
  height: 78px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 18px 15px;
  background: #fff;
}

.product-phone__header span:first-child {
  width: 58px;
  height: 9px;
  border-radius: 999px;
  background: #202733;
}

.product-phone__header span:last-child {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: #dbe3f9;
}

.product-phone__map {
  height: 235px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      33deg,
      transparent 47%,
      rgba(120, 135, 160, 0.14) 48%,
      rgba(120, 135, 160, 0.14) 51%,
      transparent 52%
    ),
    linear-gradient(
      120deg,
      transparent 43%,
      rgba(120, 135, 160, 0.11) 44%,
      rgba(120, 135, 160, 0.11) 48%,
      transparent 49%
    ),
    #e6ebf1;
}

.product-phone__route {
  position: absolute;
  top: 50px;
  left: 50px;
  width: 120px;
  height: 135px;
  border: 4px solid var(--color-primary);
  border-top-color: transparent;
  border-left-color: transparent;
  border-radius: 50%;
  transform: rotate(18deg);
}

.product-phone__pin {
  width: 17px;
  height: 17px;
  position: absolute;
  border: 4px solid #fff;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.14);
}

.product-phone__pin--one {
  top: 47px;
  left: 69px;
}

.product-phone__pin--two {
  top: 130px;
  right: 42px;
}

.product-phone__pin--three {
  bottom: 31px;
  left: 57px;
}

.product-phone__panel {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 19px;
  background: #fff;
}

.product-phone__panel span {
  height: 8px;
  border-radius: 999px;
  background: #e2e6ed;
}

.product-phone__panel span:first-child {
  width: 55%;
  background: #aeb8c9;
}

.product-phone__panel span:nth-child(2) {
  width: 86%;
}

.product-phone__panel span:last-child {
  width: 68%;
}

/* =========================================================
   Company
   ========================================================= */

.section--company {
  background: var(--color-surface);
}

.company {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 70px;
}

.company__content {
  max-width: 820px;
}

.company-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 34px;
  margin-top: 50px;
}

.company-details__item {
  padding: 21px 0;
  border-top: 1px solid var(--color-line);
}

.company-details dt {
  color: var(--color-text-soft);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.company-details dd {
  margin-top: 8px;
  font-size: 15px;
  font-weight: 700;
}

/* =========================================================
   Contact
   ========================================================= */

.section--contact {
  padding: 130px 0;
  color: #fff;
  background: var(--color-dark);
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: end;
}

.section--contact .section-heading__index {
  color: rgba(255, 255, 255, 0.42);
}

.contact h2 {
  max-width: 650px;
  margin-top: 20px;
  font-size: clamp(46px, 5.5vw, 76px);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.contact p {
  max-width: 530px;
  margin-top: 27px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 16px;
  line-height: 1.7;
}

.contact__email {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-size: clamp(22px, 2.5vw, 36px);
  font-weight: 720;
  letter-spacing: -0.04em;
  word-break: break-word;
  transition: color var(--transition-fast);
}

.contact__email:hover {
  color: #9fb2ff;
}

.contact__meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
}

/* =========================================================
   Footer
   ========================================================= */

.footer {
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.4);
  background: var(--color-dark);
  font-size: 11px;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.footer__links {
  display: flex;
  gap: 25px;
}

.footer a {
  transition: color var(--transition-fast);
}

.footer a:hover {
  color: #fff;
}

/* =========================================================
   Reveal animations
   ========================================================= */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.reveal-delay-1 {
  transition-delay: 90ms;
}

.reveal-delay-2 {
  transition-delay: 180ms;
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr 0.8fr;
    gap: 45px;
  }

  .hero-visual {
    min-height: 520px;
  }

  .hero-visual__card {
    width: 330px;
    min-height: 400px;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 72px;
  }

  .container {
    width: min(calc(100% - 32px), var(--container-width));
  }

  .section {
    padding: 90px 0;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 65px);
  }

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

  .hero__title {
    max-width: 680px;
  }

  .hero-visual {
    min-height: 500px;
  }

  .section-heading,
  .company {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .values,
  .expertise-grid {
    grid-template-columns: 1fr;
  }

  .value-card,
  .expertise-card {
    min-height: 250px;
  }

  .product-showcase {
    grid-template-columns: 1fr;
    padding: 50px 36px;
  }

  .contact {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 24px), var(--container-width));
  }

  .hero {
    padding-top: calc(var(--header-height) + 52px);
  }

  .hero__title {
    font-size: clamp(51px, 16vw, 72px);
  }

  .hero__description {
    font-size: 16px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 420px;
  }

  .hero-visual__orbit--outer {
    width: 370px;
    height: 370px;
  }

  .hero-visual__orbit--inner {
    width: 250px;
    height: 250px;
  }

  .hero-visual__card {
    width: min(300px, 85vw);
    min-height: 350px;
    padding: 28px;
    border-radius: 31px;
  }

  .hero-visual__copy {
    right: 28px;
    bottom: 34px;
    left: 28px;
  }

  .hero-visual__copy strong {
    font-size: 30px;
  }

  .hero-visual__sphere--large {
    width: 65px;
    height: 65px;
  }

  .section-heading__content h2,
  .company__content h2 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .product-showcase {
    padding: 34px 24px;
    border-radius: 26px;
  }

  .product-showcase__visual {
    min-height: 410px;
  }

  .product-phone {
    transform: rotate(3deg);
  }

  .company-details {
    grid-template-columns: 1fr;
  }

  .section--contact {
    padding: 90px 0;
  }

  .contact__meta,
  .footer__inner {
    flex-direction: column;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
/* =========================================================
   Image sections
   ========================================================= */

.hero-image-wrap {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: var(--shadow-md);
}

.hero-image {
  width: 100%;
  height: 100%;
  min-height: 560px;
  display: block;
  object-fit: cover;
}

.hero-image-wrap::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(
    180deg,
    transparent 45%,
    rgba(5, 10, 18, 0.56) 100%
  );
  pointer-events: none;
}

.hero-image-badge {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 28px;
  left: 28px;

  display: flex;
  flex-direction: column;
  gap: 8px;

  color: #fff;
}

.hero-image-badge span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  opacity: 0.72;
}

.hero-image-badge strong {
  max-width: 340px;
  font-size: clamp(24px, 2.6vw, 38px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.about-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 22px;
}

.about-media img {
  width: 100%;
  height: 340px;
  display: block;

  object-fit: cover;

  border-radius: var(--radius-md);

  box-shadow: var(--shadow-sm);
}

.product-image-wrap {
  position: relative;
  min-height: 420px;

  overflow: hidden;

  border-radius: 28px;

  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.28);
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 420px;

  display: block;

  object-fit: cover;
}

.product-image-wrap::after {
  position: absolute;
  inset: 0;

  content: "";

  border: 1px solid rgba(255, 255, 255, 0.12);

  border-radius: inherit;

  pointer-events: none;
}

.company-image {
  margin-top: 46px;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.company-image img {
  width: 100%;
  height: 360px;
  display: block;
  object-fit: cover;
}

/* =========================================================
   Contacts
   ========================================================= */

.contact__details {
  display: flex;
  flex-direction: column;
}

.contact__item {
  display: grid;
  grid-template-columns: 85px 1fr auto;
  gap: 20px;
  align-items: center;

  padding: 26px 0;

  border-top: 1px solid rgba(255, 255, 255, 0.14);

  transition:
    color var(--transition-fast),
    padding-left var(--transition-fast);
}

.contact__item:nth-child(2) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.contact__item:hover {
  padding-left: 8px;
  color: #9fb2ff;
}

.contact__item-label {
  color: rgba(255, 255, 255, 0.38);

  font-size: 10px;
  font-weight: 800;

  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact__item strong {
  min-width: 0;

  font-size: clamp(19px, 2vw, 30px);
  font-weight: 720;

  letter-spacing: -0.035em;

  word-break: break-word;
}

.contact__item > span:last-child {
  font-size: 22px;
}

/* =========================================================
   Image hover
   ========================================================= */

.hero-image,
.about-media img,
.product-image-wrap img,
.company-image img {
  transition:
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 900ms ease;
}

.hero-image-wrap:hover .hero-image,
.about-media img:hover,
.product-image-wrap:hover img,
.company-image:hover img {
  transform: scale(1.025);
}

/* =========================================================
   Additional responsive rules
   ========================================================= */

@media (max-width: 1024px) {
  .hero-image-wrap,
  .hero-image {
    min-height: 500px;
  }

  .about-media img {
    height: 290px;
  }
}

@media (max-width: 820px) {
  .hero-image-wrap,
  .hero-image {
    min-height: 520px;
  }

  .about-media {
    grid-template-columns: 1fr 1fr;
  }

  .about-media img {
    height: 280px;
  }

  .product-image-wrap,
  .product-image-wrap img {
    min-height: 360px;
  }

  .company-image img {
    height: 320px;
  }
}

@media (max-width: 560px) {
  .hero-image-wrap {
    min-height: 420px;
    border-radius: 26px;
  }

  .hero-image {
    min-height: 420px;
  }

  .hero-image-badge {
    right: 22px;
    bottom: 22px;
    left: 22px;
  }

  .about-media {
    grid-template-columns: 1fr;
  }

  .about-media img {
    height: 250px;
  }

  .product-image-wrap,
  .product-image-wrap img {
    min-height: 300px;
  }

  .company-image img {
    height: 250px;
  }

  .contact__item {
    grid-template-columns: 1fr auto;
    gap: 9px 16px;
  }

  .contact__item-label {
    grid-column: 1 / -1;
  }

  .contact__item strong {
    font-size: 20px;
  }

  .footer__links {
    flex-direction: column;
    gap: 8px;
  }
}
