  .app-page {
      direction: rtl;
      max-width: 1200px;
      margin: auto;
      padding: 40px 20px;
      font-family: inherit;
  }

  /* HERO */
  .app-hero {
      text-align: center;
      margin-bottom: 60px;
  }

  .app-hero h1 {
      font-size: 2.2rem;
      margin-bottom: 16px;
  }

  .app-hero p {
      max-width: 800px;
      margin: 0 auto 30px;
      line-height: 1.9;
      color: #555;
  }

  .hero-mockup {
      display: flex;
      justify-content: center;
      align-items: center;
  }

  .hero-mockup img {
      max-width: 320px;
      width: 100%;
  }

  /* DOWNLOAD SECTION */
  .section-title {
      text-align: center;
      font-size: 1.6rem;
      margin-bottom: 30px;
  }

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

  /* CARD */
  .app-card {
      background: #fff;
      border-radius: 14px;
      padding: 24px 20px;
      text-align: center;
      text-decoration: none;
      color: inherit;
      box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
      transition: all .25s ease;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
  }

  .app-card img {
      height: 48px;
      margin-bottom: 14px;
  }

  .app-card h2 {
      font-size: 1rem;
      margin-bottom: 6px;
  }

  .app-card span {
      font-size: .9rem;
      color: #777;
  }

  /* HOVER */
  .app-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 18px 40px rgba(0, 0, 0, .12);
  }