.cos-hero {
  padding-top: 40px;
}

.cos-hero__card {
  position: relative;
  background: linear-gradient(
    90deg,
    var(--cos-hero-from) 0%,
    var(--cos-hero-to) 100%
  );
  border-radius: var(--cos-radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  align-items: center;
  gap: 32px;
  padding: clamp(32px, 5vw, 80px) clamp(24px, 4vw, 64px);
}

.cos-hero__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
  z-index: 2;
}

.cos-hero__title {
  font-size: clamp(32px, 4.5vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  margin: 0;
  letter-spacing: -1px;
  white-space: nowrap;
}

.cos-hero__title .cos-accent {
  color: var(--cos-yellow);
}

.cos-hero__subtitle {
  font-size: clamp(16px, 1.6vw, 24px);
  font-weight: 500;
  max-width: 720px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.92);
}

.cos-hero__btn {
  align-self: flex-start;
}

.cos-hero__features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  alig-items: start;
}

.cos-hero__feature {
  display: flex;
  align-items: start;
  gap: 12px;
}

.cos-hero__feature-icon {
  width: 55px;
  height: 51px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
}

.cos-hero__feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cos-hero__feature-text h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 4px;
  line-height: 1.2;
}

.cos-hero__feature-text p {
  font-size: 14px;
  font-weight: 500;
  color: var(--cos-text-muted);
  line-height: 1.4;
}

.cos-hero__image {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.cos-hero__image img {
  width: 100%;
  max-width: 608px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.35));
}

@media (max-width: 1100px) {
  .cos-hero__features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .cos-hero__card {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    text-align: center;
  }

  .cos-hero__content {
    align-items: center;
    gap: 24px;
  }

  .cos-hero__btn {
    align-self: center;
  }

  .cos-hero__features {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .cos-hero__feature {
    text-align: left;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--cos-radius-md);
    padding: 12px 16px;
  }

  .cos-hero__image {
    order: 2;
    justify-content: center;
  }

  .cos-hero__image img {
    max-width: 320px;
  }
}

@media (max-width: 900px) {
  .cos-hero__title {
    white-space: normal;
  }
}

@media (max-width: 480px) {
  .cos-hero__title {
    font-size: 36px;
  }

  .cos-hero__subtitle {
    font-size: 16px;
  }
}
