/* ===== СТРАНИЦА О КОМПАНИИ ===== */

/* Основной блок о компании */
.about-hero {
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../media/Vector.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: calc(70% + 240px) center;
  filter: brightness(0) invert(1);
  z-index: 1;
  pointer-events: none;
}

.about-hero__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  position: relative;
  z-index: 2;
}

.about-hero__left {
  flex: 1;
  max-width: 650px;
  display: flex;
  justify-content: center;
  align-items: start;
  gap: 20px;
}
.about-hero-img{
  width: 66px;
  height: 43px;
  padding-top: 14px;
}
.about-hero__title {
  font-size: 72px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 30px;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-hero__subtitle  {
  color:#272727  !important;
  font-size: 50px;
  font-weight: 500;
  margin-bottom: 30px;
}
.about-hero__subtitle span{
  color:#272727  !important;

}
.about-hero__description {
  margin-bottom: 22px;
  font-weight: 400;
}

.about-hero__description p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

.about-hero__stats {
  border-top: 2px solid #D9D9D9;
  padding-top: 21px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}


.about-hero__stat-number {
  font-size: 50px;
  font-weight: 400;
  color: var(--orange);
  font-family: 'Tektur', monospace;
  margin-bottom: 8px;
}

.about-hero__stat-label {
  font-size: 22px;
  color: var(--text-secondary);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-hero__right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.about-hero__image {
  position: relative;
  animation: float 6s ease-in-out infinite;
}

.about-hero__image-img {
  width: 100%;
  max-width: 450px;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

.about-hero__floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.about-hero__floating-element {
  position: absolute;
  background: var(--bg-primary);
  border: 2px solid var(--accent-orange);
  border-radius: 12px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: floatElement 4s ease-in-out infinite;
}

.about-hero__floating-element img {
  width: 24px;
  height: 24px;
}

.about-hero__floating-element span {
  font-size: 16px;
  font-weight: 700;
  color: var(--accent-orange);
  font-family: 'Tektur', monospace;
}

.about-hero__floating-element--1 {
  top: 20%;
  right: -10%;
  animation-delay: 0s;
}

.about-hero__floating-element--2 {
  bottom: 30%;
  left: -15%;
  animation-delay: 1.5s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

@keyframes floatElement {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(5deg); }
}

/* Описание компании */
.about-description {
  padding: 120px 0;
  background: var(--bg-primary);
}

.about-description__content {
  display: flex;
  align-items: flex-start;
  gap: 80px;
}

.about-description__left {
  flex: 1;
  max-width: 500px;
}

.about-description__title {
  font-size: 40px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 0;
}

.about-description__right {
  flex: 1;
  max-width: 600px;
}

.about-description__text-block {
  margin-bottom: 30px;
}

.about-description__text-block:last-child {
  margin-bottom: 0;
}

.about-description__text {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* Наши ценности */
.about-values {
  padding: 120px 0;
  background: var(--bg-secondary);
}

.about-values__title {
  text-align: center;
  margin-bottom: 80px;
  font-size: 48px;
  font-weight: 700;
}

.about-values__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-values__card {
  background: var(--bg-primary);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-values__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-orange);
}

.about-values__card-icon {
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-values__card-icon-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.about-values__card-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.about-values__card-text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* Мобильная версия ценностей */
.about-values__slider--mobile {
  display: none;
}

.about-values__slider-container {
  overflow: hidden;
  border-radius: 20px;
}

.about-values__slider-track {
  display: flex;
  transition: transform 0.3s ease;
}

.about-values__slider .about-values__card {
  min-width: 100%;
  margin: 0;
}

.about-values__slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.about-values__slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.about-values__slider-dot--active {
  background: var(--accent-orange);
}

/* Наша миссия */
.about-mission {
  padding: 120px 0;
  background: var(--bg-primary);
}

.about-mission__content {
  display: flex;
  align-items: center;
  gap: 80px;
}

.about-mission__left {
  flex: 1;
  display: flex;
  justify-content: center;
}

.about-mission__image-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  opacity: 0.8;
}

.about-mission__right {
  flex: 1;
  max-width: 600px;
}

.about-mission__title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 40px;
}

.about-mission__text-block {
  margin-bottom: 30px;
}

.about-mission__text-block:last-child {
  margin-bottom: 0;
}

.about-mission__text {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* Наша команда */
.about-team {
  padding: 120px 0;
  background: var(--bg-primary);
  position: relative;
}

.about-team__header {
  text-align: center;
  margin-bottom: 80px;
}

.about-team__title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  margin-left: 0;
  color: var(--text-primary);
}

.about-team__subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  text-align: left;
  margin: 0 auto;
  line-height: 1.6;
}

.about-team__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  margin: 0 auto;
  align-items: stretch;
}

.about-team__card {
  position: relative;
  padding: 40px 32px;
  border-radius: 24px;
  background: linear-gradient(
    155deg,
   
    #333333 52%,
    #e15d0a 92%
  );
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.8);
}

/* .about-team__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(110% 110% at 0% 0%, rgba(255, 118, 37, 0.32) 0%, rgba(255, 118, 37, 0.05) 55%, transparent 85%);
  opacity: 0.9;
  transition: opacity 0.3s ease;
  pointer-events: none;
} */

.about-team__card > * {
  position: relative;
  z-index: 1;
}

.about-team__card:hover {
  transform: translateY(-12px);
  box-shadow: 0 45px 85px rgba(18, 19, 24, 0.55);
  border-color: rgba(255, 165, 90, 0.55);
}

.about-team__card:hover::before {
  opacity: 1;
}

.about-team__card-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 160, 83, 0.26) 0%, rgba(255, 110, 31, 0.16) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-team__card-icon-img {
  width: 40px;
  height: 44px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(63%) sepia(71%) saturate(973%) hue-rotate(346deg) brightness(103%) contrast(101%);
}

.about-team__card-title {
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
}

.about-team__card-text {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}

/* Наши направления */
.about-directions {
  padding: 120px 0;
  background: var(--bg-secondary);
}

.about-directions__title {
  text-align: center;
  margin-bottom: 80px;
  font-size: 48px;
  font-weight: 700;
}

.about-directions__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-directions__card {
  background: var(--bg-primary);
  padding: 40px 30px;
  border-radius: 20px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.about-directions__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-orange);
}

.about-directions__card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.about-directions__card-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.about-directions__card-image {
  flex-shrink: 0;
}

.about-directions__card-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.about-directions__card-text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 30px;
  flex-grow: 1;
}

.about-directions__card-link {
  color: var(--accent-orange);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.about-directions__card-link:hover {
  color: var(--text-primary);
  text-decoration: underline;
}

/* Адаптивность для страницы о компании */
@media (max-width: 1024px) {
  .about-hero__content {
    gap: 40px;
  }
  .about-hero-img{
    display: none;
  }
  .about-hero__title {
    font-size: 56px;
  }
  
  .about-hero__subtitle {
    font-size: 24px;
  }
  
  .about-hero__stats {
    gap: 30px;
  }
  
  .about-hero__stat-number {
    font-size: 28px;
  }
  
  .about-description__content {
    gap: 60px;
  }
  
  .about-description__title {
    font-size: 36px;
  }
  
  .about-mission__content {
    gap: 60px;
  }
  
  .about-mission__title {
    font-size: 36px;
  }
  
  .about-team__title {
    font-size: 36px;
  }
  
  .about-team__grid {
    gap: 30px;
  }
  
  .about-values__title,
  .about-directions__title {
    font-size: 36px;
  }
  
  .about-values__cards,
  .about-directions__cards {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .about-hero {
    padding: 20px 0 50px;
  }
  
  .about-hero__content {
    flex-direction: column;
    gap: 50px;
  }
  
  .about-hero__left {
    align-items: center;
    text-align: center;
  }
  
  .about-hero__title {
    font-size: 42px;
  }
  
  .about-hero__subtitle {
    font-size: 20px;
  }
  
  .about-hero__description p {
    font-size: 16px;
  }
  
  .about-hero__stats {
    justify-content: center;
    gap: 30px;
  }
  
  .about-hero__stat-number {
    font-size: 24px;
  }
  
  .about-hero__image-img {
    max-width: 350px;
  }
  
  .about-hero__floating-elements {
    display: none;
  }
  
  .about-description {
    padding: 0px 0;
  }
  
  .about-description__content {
    flex-direction: column;
    gap: 40px;
  }
  
  .about-description__title {
    font-size: 28px;
  }
  
  .about-description__text {
    font-size: 16px;
  }
  
  .about-values {
    padding: 80px 0;
  }
  
  .about-values__title {
    font-size: 28px;
    margin-bottom: 40px;
  }
  
  .about-values__cards--desktop {
    display: none;
  }
  
  .about-values__slider--mobile {
    display: block;
  }
  
  .about-mission {
    padding: 80px 0;
  }
  
  .about-mission__content {
    flex-direction: column;
    gap: 40px;
  }
  
  .about-mission__title {
    font-size: 28px;
  }
  
  .about-mission__text {
    font-size: 16px;
  }
  
  .about-team {
    padding: 80px 0;
  }
  
  .about-team__title {
    font-size: 28px;
  }
  
  .about-team__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
  
  .about-team__card {
    padding: 32px 24px;
  }
  .about-hero__stat-label{
    font-size: 16px;
  }
  .about-team__card-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
  }
  .about-team__subtitle{
    margin-left: 0;
  }
  .about-team__subtitle br {
    display: none;
  }
  .about-team__card-icon-img {
    width: 28px;
    height: 28px;
  }
  
  .about-team__card-title {
    font-size: 18px;
  }
  
  .about-team__card-text {
    font-size: 14px;
  }
  
  .about-directions {
    padding: 80px 0;
  }
  
  .about-directions__title {
    font-size: 28px;
    margin-bottom: 40px;
  }
  
  .about-directions__cards {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .about-directions__card {
    padding: 30px 20px;
  }
  
  .about-directions__card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  
  .about-directions__card-title {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .about-hero__title {
    font-size: 32px;
  }
  
  .about-hero__subtitle {
    font-size: 18px;
  }
  
  .about-hero__description p {
    font-size: 15px;
  }
  
  .about-hero__stats {
    gap: 20px;
  }
  
  .about-hero__stat-number {
    font-size: 20px;
  }
  
  .about-hero__image-img {
    max-width: 280px;
  }
  
  .about-description__title {
    font-size: 24px;
  }
  
  .about-mission__title {
    font-size: 24px;
  }
  
  .about-team__title {
    margin-left: 20px;
    font-size: 24px;
  }
  
  .about-team__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .about-team__card {
    padding: 28px 20px;
  }

  .about-team__card-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .about-team__card-icon-img {
    width: 26px;
    height: 26px;
  }
  
  .about-team__card-icon-img {
    width: 30px;
    height: 35px;
  }
  
  .about-team__card-title {
    font-size: 15px;
  }
  
  .about-team__card-text {
    font-size: 14px;
  }
  
  .about-values__title,
  .about-directions__title {
    font-size: 24px;
  }
  
  .about-values__card,
  .about-directions__card {
    padding: 25px 20px;
  }
  
  .about-values__card-title {
    font-size: 20px;
  }
  
  .about-directions__card-title {
    font-size: 16px;
  }
}
