/* About page — restored from live https://deep-tech.solutions/about */

/* —— Header (live About: white horizontal nav) —— */
.about-header {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: var(--header-height);
  padding: 0.8rem 2.05rem;
  color: var(--black);
  background: transparent;
}

.about-header__menu-btn,
.about-header__menu-close {
  display: none;
}

.about-header__menu-icon {
  display: block;
  width: 100%;
  height: 100%;
}

.about-header__logo {
  margin-right: 0;
}

.about-header__right {
  display: flex;
  align-items: stretch;
  gap: 1.5rem;
  margin-left: auto;
  flex-shrink: 0;
}

.about-header__about,
.about-header__contact,
.about-header__search {
  align-self: center;
}

.about-header__nav {
  display: flex;
  flex: 1;
  min-width: 0;
}

.about-header__nav-list {
  display: flex;
  flex-wrap: nowrap;
  margin-left: 4rem;
  list-style: none;
  min-width: 0;
}

.about-header__nav-item {
  position: relative;
  flex-shrink: 0;
}

.about-header__nav-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: currentcolor;
  opacity: 0.2;
}

.about-header__nav-item:last-child::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: currentcolor;
  opacity: 0.2;
}

.about-header__nav-link {
  display: block;
  padding: 0.55rem 2.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: normal;
  white-space: nowrap;
  transition: opacity 0.3s ease-out;
}

.about-header__nav-link:hover {
  opacity: 0.7;
}

.about-header__nav-mobile {
  display: none;
}

.about-header__about {
  display: block;
  padding: 0;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: normal;
  white-space: nowrap;
}

.about-header__about.is-active span {
  position: relative;
}

.about-header__about.is-active span::before {
  content: "";
  position: absolute;
  bottom: -0.15rem;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentcolor;
}

.about-header__contact {
  width: 9rem;
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(18, 20, 34, 0.2);
  border-radius: 50rem;
  font-family: var(--font-grotzec);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  background: transparent;
  color: inherit;
  transition: opacity 0.3s ease-out, border-color 0.3s ease-out;
}

.about-header__contact:hover {
  border-color: rgba(18, 20, 34, 0.9);
}

.about-header__contact--mobile {
  width: auto;
  padding: 0.25rem 1.25rem;
  font-size: 0.8rem;
  line-height: 1.75;
}

.about-header__search {
  --size: 1.45rem;
  display: block;
  flex-shrink: 0;
  width: var(--size);
  height: var(--size);
  transition: opacity 0.3s ease-out;
}

.about-header__search:hover {
  opacity: 0.7;
}

.about-header__search svg {
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 1023px) {
  .about-header {
    position: fixed;
    top: 0;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
    padding: 0.9rem 0.7rem 0.9rem var(--container-padding);
    background: var(--black-6);
    color: var(--white);
  }

  .about-header__menu-btn {
    position: relative;
    z-index: 2;
    display: block;
    width: 0.9rem;
    height: 0.7rem;
    grid-column: 1;
    grid-row: 1;
  }

  .about-header__logo {
    justify-self: center;
    grid-column: 2;
    grid-row: 1;
    width: 7rem;
  }

  .page--about .about-header .header-logo-link--dark {
    background-image: url("../images/logo.png");
  }

  .about-header__nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    opacity: 0;
    background-color: var(--black-6);
    padding: 0.5rem var(--container-padding) 2rem;
    transition: opacity 0.3s ease-out;
    color: var(--white);
    pointer-events: none;
    z-index: 20;
  }

  .about-header.is-open .about-header__nav {
    opacity: 1;
    pointer-events: all;
  }

  .about-header__menu-close {
    --size: 1.25rem;
    align-self: flex-start;
    display: block;
    width: var(--size);
    height: var(--size);
    margin-bottom: 3.55rem;
    transform: translate(-0.2rem, 0.5rem);
  }

  .about-header__nav-list {
    flex-direction: column;
    margin-left: 0;
    margin-bottom: auto;
  }

  .about-header__nav-item::before,
  .about-header__nav-item:last-child::after {
    content: none;
  }

  .about-header__nav-link {
    display: flex;
    gap: 0.65rem;
    align-items: center;
    padding: 0;
    font-family: var(--font-grotzec);
    font-weight: 600;
    font-size: 2rem;
    line-height: 1.6;
    letter-spacing: -0.04rem;
    white-space: normal;
  }

  .about-header__nav-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.8rem;
    margin-top: 2.5rem;
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1.375;
    letter-spacing: -0.02rem;
  }

  .about-header__right {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    gap: 0;
    margin-left: 0;
  }

  .about-header__about,
  .about-header__right .about-header__contact {
    display: none;
  }

  .about-header__search {
    margin-right: 0;
  }
}

.page--about::before {
  content: "";
  position: absolute;
  z-index: 5;
  top: calc(var(--header-height) + 2.65rem);
  left: var(--container-padding);
  width: 1px;
  height: calc(100% - var(--header-height) - 2.65rem);
  background-color: rgba(18, 20, 34, 0.2);
}

@media only screen and (max-width: 1023px) {
  .page--about::before {
    content: none;
  }
}

/* Breadcrumbs */
.breadcrumbs--about {
  display: flex;
  flex-wrap: nowrap;
  list-style: none;
}

.breadcrumbs--about li {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.breadcrumbs--about li:not(:last-child) {
  margin-right: 0.5rem;
}

.breadcrumbs--about li:not(:last-child)::after {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1px;
  margin-left: 0.5rem;
  background-color: currentcolor;
  opacity: 0.5;
}

.breadcrumbs--about a,
.breadcrumbs--about span {
  display: block;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 0.65rem;
  line-height: 1.38;
  transition: opacity 0.3s ease-out;
}

.breadcrumbs--about a:hover {
  opacity: 0.7;
}

@media only screen and (max-width: 1023px) {
  .breadcrumbs--about li:not(:last-child) {
    margin-right: 0.35rem;
  }

  .breadcrumbs--about li:not(:last-child)::after {
    width: 1rem;
    margin-left: 0.35rem;
  }

  .breadcrumbs--about a,
  .breadcrumbs--about span {
    font-size: 0.5rem;
  }
}

/* Hero */
.about-hero {
  position: relative;
  overflow: visible;
  padding-top: calc(var(--header-height) + 4rem);
  padding-inline: 4.5rem;
  padding-bottom: 8.3rem;
  background: var(--white);
  color: var(--black);
}

.about-hero__breadcrumbs,
.about-hero__title,
.about-hero__intro,
.about-hero__wrap {
  position: relative;
  z-index: 2;
}

.about-hero__breadcrumbs {
  margin-bottom: 1.4rem;
  white-space: nowrap;
}

.about-hero__title {
  margin-bottom: 1.5rem;
  font-family: var(--font-grotzec);
  font-size: 12rem;
  font-weight: 600;
  line-height: 0.9166;
  letter-spacing: var(--letter-spacing);
  text-transform: uppercase;
}

.about-hero__intro {
  max-width: 20.2rem;
  margin-bottom: 3rem;
  font-weight: 500;
  letter-spacing: var(--letter-spacing);
}

.about-hero__wrap {
  display: flex;
  gap: 7.5rem;
}

.about-hero__col {
  position: relative;
}

.about-hero__block {
  width: 19rem;
  padding: 1.05rem 1.6rem 1.4rem;
  margin-bottom: 2.65rem;
  border: 1px solid rgba(18, 20, 34, 0.2);
}

.about-hero__block-label {
  max-width: 9.4rem;
  margin-bottom: 2rem;
  font-weight: 500;
}

.about-hero__block-stat {
  font-family: var(--font-grotzec);
  font-size: 5.6rem;
  line-height: 1;
  letter-spacing: var(--letter-spacing);
  text-transform: uppercase;
}

.about-hero__text-right {
  width: 23.55rem;
  letter-spacing: -0.025em;
}

.about-hero__globe-stage {
  --about-globe-right: 2.75rem;
  position: absolute;
  top: calc(-4.35rem + 6.75rem);
  right: var(--about-globe-right);
  z-index: 0;
  width: 54rem;
  height: 52.12rem;
  pointer-events: none;
}

.about-hero__globe-visual {
  position: absolute;
  inset: 0;
  transform: rotate(5deg);
  transform-origin: right center;
}

.about-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.about-hero__pins {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.about-hero__bg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right top;
}

.about-hero__pin {
  --size: 5.2rem;
  position: absolute;
  top: 13.24rem;
  right: 3.44rem;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  color: var(--white);
  text-align: center;
  font-family: var(--font-grotzec);
  font-size: 1.2rem;
  line-height: 1.16;
  text-transform: uppercase;
  isolation: isolate;
  transform: rotate(-5deg);
}

.about-hero__pin::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--black);
  animation: about-pin-pulse 3s ease-in-out infinite;
}

.about-hero__pin--uae {
  top: 19.64rem;
  right: 23.84rem;
}

.about-hero__pin--uae::before {
  animation-delay: -2s;
}

.about-hero__pin--india {
  top: 21.92rem;
  right: 11.92rem;
}

.about-hero__pin--india::before {
  animation-delay: -1s;
}

.about-hero__pin--eu {
  right: auto;
  left: 11rem;
  top: 10.25rem;
}

.about-hero__pin--eu::before {
  animation-delay: -2.5s;
}

.about-hero__locations {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.65rem;
  max-width: 51.65rem;
  margin-top: 0;
  margin-bottom: -8.3rem;
  list-style: none;
}

.about-hero__location {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.95rem 8.3rem;
  border-left: 1px solid rgba(18, 20, 34, 0.2);
}

.about-hero__location-name {
  font-family: var(--font-grotzec);
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.about-hero__location-address {
  font-size: 0.8rem;
  line-height: 1.25;
  letter-spacing: var(--letter-spacing);
  opacity: 0.8;
}

@keyframes about-pin-pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

@media only screen and (max-width: 1023px) {
  .about-hero {
    padding-top: calc(var(--header-height) + 1.15rem);
    padding-inline: var(--container-padding);
    padding-bottom: 2.8rem;
  }

  .about-hero__breadcrumbs {
    margin-bottom: 1.2rem;
  }

  .about-hero__title {
    margin-bottom: 1rem;
    font-size: 3.6rem;
    line-height: 0.8888;
  }

  .about-hero__intro {
    margin-bottom: 1.4rem;
    font-size: 0.65rem;
    line-height: 1.38;
  }

  .about-hero__wrap {
    flex-direction: column;
    gap: 19.4rem;
  }

  .about-hero__col {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.15rem;
    align-items: flex-start;
  }

  .about-hero__block {
    width: auto;
    padding: 1.05rem;
    order: 1;
    margin-bottom: 0;
  }

  .about-hero__block-label {
    margin-bottom: 1rem;
    font-size: 0.65rem;
    line-height: 1.384;
  }

  .about-hero__block-stat {
    font-size: 4rem;
  }

  .about-hero__text-right {
    width: auto;
    margin-top: 0;
    font-size: 0.65rem;
    line-height: 1.384;
  }

  .about-hero__globe-stage {
    top: auto;
    bottom: -29.8rem;
    right: 1.55rem;
    width: 24rem;
    height: 24rem;
  }

  .about-hero__globe-visual {
    transform: none;
  }

  .about-hero__pin {
    transform: none;
  }

  .about-hero__bg {
    transform: none;
  }

  .about-hero__bg::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
    width: 100%;
    height: 15.2rem;
    background: linear-gradient(0deg, #fff, hsla(0, 0%, 100%, 0));
  }

  .about-hero__pin {
    --size: 2.8rem;
    top: 5.48rem;
    right: 1.2rem;
    font-size: 0.6rem;
    line-height: 1.08;
  }

  .about-hero__pin--uae {
    top: 8.88rem;
    right: 9.92rem;
  }

  .about-hero__pin--india {
    top: 9.48rem;
    right: 3.52rem;
  }

  .about-hero__pin--eu {
    left: 3.75rem;
    top: 2.95rem;
  }

  .about-hero__locations {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.1rem;
    margin-top: -5.5rem;
    margin-bottom: 0;
  }

  .about-hero__location {
    gap: 0.5rem;
    padding: 0;
    border: none;
  }

  .about-hero__location-name {
    font-size: 1.2rem;
    line-height: 1.66;
  }

  .about-hero__location-address {
    font-size: 0.65rem;
    line-height: 1.384;
  }
}

/* Contact section */
.about-form {
  display: grid;
  grid-template-columns: 14.85rem auto;
  gap: 16.25rem;
  padding-top: 5.05rem;
  padding-inline: 4.5rem;
  padding-bottom: 4.2rem;
  background-color: var(--black-6);
  color: var(--white);
}

.about-form__title {
  font-family: var(--font-grotzec);
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: var(--letter-spacing);
  text-transform: uppercase;
}

.about-form__fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.55rem 2.85rem;
}

.about-form__field {
  position: relative;
  display: block;
  color: var(--white);
}

.about-form__field::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  right: 0.75rem;
  height: 2.65rem;
  background-image: linear-gradient(180deg, var(--black-6) 49.06%, transparent 100%);
  pointer-events: none;
}

.about-form__field-label {
  position: absolute;
  left: 1.1rem;
  top: 0.6rem;
  font-size: 0.7rem;
  line-height: 1.418;
  letter-spacing: var(--letter-spacing);
  pointer-events: none;
}

.about-form__field-input {
  display: block;
  width: 100%;
  padding: 2.2rem 1.1rem 0.85rem;
  border: 1px solid hsla(0, 0%, 100%, 0.2);
  border-radius: 0;
  letter-spacing: var(--letter-spacing);
  font: inherit;
  color: currentcolor;
  resize: none;
  background-color: var(--black-6);
}

.about-form__field-input::placeholder {
  color: hsla(0, 0%, 100%, 0.4);
}

.about-form__field-input:focus-visible {
  outline: none;
}

.about-form__field--textarea {
  grid-column: span 2;
}

.about-form__field--textarea .about-form__field-input {
  min-height: 9.1rem;
}

.about-form__submit {
  min-width: 11.5rem;
  margin-top: 2.5rem;
  padding: 0.7rem 1.25rem;
  border: 1px solid rgba(18, 20, 34, 0.2);
  border-radius: 50rem;
  font-family: var(--font-grotzec);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.33;
  text-transform: uppercase;
  text-align: center;
  background-color: var(--white);
  color: var(--black);
  transition: opacity 0.3s ease-out;
}

.about-form__submit:hover {
  opacity: 0.8;
}

.about-form .contact-modal__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.about-form__content {
  min-width: 0;
}

.about-form__ack {
  margin-top: 1.5rem;
  letter-spacing: -0.025em;
}

.about-form__ack a {
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.about-form__ack a:hover {
  opacity: 0.7;
}

.page--about > .legal-footer {
  background: var(--black-6);
  color: var(--white);
  padding: 0 4.5rem 2.5rem;
}

@media only screen and (max-width: 1023px) {
  .about-form {
    grid-template-columns: 1fr;
    padding: 2rem var(--container-padding) 2.7rem;
    gap: 2rem;
  }

  .about-form__title {
    font-size: 1.6rem;
  }

  .about-form__fields {
    grid-template-columns: none;
    gap: 1rem;
  }

  .about-form__field::before {
    height: 1.75rem;
  }

  .about-form__field-label {
    top: 0.5rem;
    left: 0.75rem;
    font-size: 0.55rem;
    line-height: 1.18;
  }

  .about-form__field-input {
    padding: 1.75rem 0.75rem 0.6rem;
    font-size: 0.8rem;
    line-height: 1.236;
  }

  .about-form__field--textarea {
    grid-column: initial;
  }

  .about-form__field--textarea .about-form__field-input {
    min-height: 7.75rem;
  }

  .about-form__submit {
    width: 100%;
    min-width: auto;
    margin-top: 1.5rem;
    padding-block: 0.2rem;
    font-size: 0.8rem;
    line-height: 2;
  }

  .about-form__ack {
    margin-top: 1rem;
    font-size: 0.65rem;
    line-height: 1.384;
  }

  .page--about > .legal-footer {
    padding: 0 var(--container-padding) 2rem;
  }
}
