/* Index Page Specific Styles */

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 20px 100px;
}

/* Hero */
.hero {
  text-align: center;
  margin-bottom: 64px;
}

.hero h1 {
  font-size: 42px;
  font-weight: 300;
  color: #333;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.hero p {
  color: #888;
  font-size: 16px;
  font-weight: 400;
}

.hero .concept {
  font-size: 13px;
  color: #aaa;
  margin-top: 12px;
  letter-spacing: 1px;
}

/* Apps Section */
.apps-section {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.apps-section h2 {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #999;
  margin-bottom: 28px;
}

.app-list {
  display: grid;
  gap: 20px;
}

/* App Card */
.app-card {
  background: #fafbfc;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  gap: 24px;
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease;
}

.app-card:hover {
  background: white;
  border-color: rgba(25, 118, 210, 0.2);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.app-icon {
  width: 80px;
  height: 80px;
  border-radius: 18px;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(25, 118, 210, 0.25);
}

.app-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.app-info h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #333;
}

.app-info .tagline {
  color: #1976D2;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 8px;
}

.app-info .description {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 28px;
  }

  .apps-section {
    padding: 24px;
  }

  .app-card {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }

  .app-icon {
    margin: 0 auto;
  }
}
