.ready-apps {
  margin-top: 72px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.ready-apps__header {
  text-align: center;
  margin-bottom: 40px;
}

.ready-apps__title {
  font-family: var(--font-Montserrat);
  font-size: var(--fz-35);
  font-weight: 700;
  color: var(--color-white);
  margin: 12px 0 16px;
  line-height: 1.2;
}

.ready-apps__title span {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ready-apps__subtitle {
  font-family: var(--font-Inter);
  font-size: var(--fz-16);
  color: var(--color-text-muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

.ready-apps__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.ready-apps__card {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  background: var(--color-bg-card);
  border: var(--border-subtle);
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.ready-apps__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.ready-apps__card-link {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  padding: 32px;
  background: linear-gradient(145deg, rgba(147, 51, 234, 0.12) 0%, rgba(18, 13, 31, 0.6) 100%);
}

.ready-apps__card-img {
  width: 100%;
  max-width: 140px;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 22%;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  transition: transform 0.4s ease;
}

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

.ready-apps__card-store-hint {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  font-family: var(--font-Inter);
  font-size: 12px;
  font-weight: 500;
  color: var(--color-white);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ready-apps__card:hover .ready-apps__card-store-hint {
  opacity: 1;
}

.ready-apps__card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px 20px 22px;
}

.ready-apps__card-name {
  font-family: var(--font-Montserrat);
  font-size: var(--fz-18);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 16px;
  line-height: 1.3;
}

.ready-apps__card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ready-apps__card-price {
  font-family: var(--font-Montserrat);
  font-size: var(--fz-22);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
  white-space: nowrap;
}

.ready-apps__card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: none;
  border-radius: 999px;
  background: var(--gradient-primary);
  font-family: var(--font-Inter);
  font-size: var(--fz-14);
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  white-space: nowrap;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.ready-apps__card-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(147, 51, 234, 0.35);
}

.ready-apps-modal__intro {
  font-family: var(--font-Inter);
  font-size: var(--fz-16);
  color: var(--color-text-muted);
  margin-bottom: 24px;
  line-height: 1.5;
}

.ready-apps-modal__app-name {
  display: inline-block;
  margin-bottom: 20px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(147, 51, 234, 0.15);
  border: 1px solid rgba(147, 51, 234, 0.3);
  font-family: var(--font-Inter);
  font-size: var(--fz-14);
  font-weight: 600;
  color: var(--color-accent-light);
}

.ready-apps-modal__form input[type="tel"] {
  width: 100%;
}

@media (max-width: 1100px) {
  .ready-apps__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .ready-apps {
    margin-top: 56px;
  }

  .ready-apps__title {
    font-size: var(--fz-26);
  }

  .ready-apps__grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  .ready-apps__card-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .ready-apps__card-btn {
    width: 100%;
    padding: 12px 18px;
  }
}
