/* My12SC app page styles */
.app-hero {
  background: #111;
  padding: 7rem 0 4rem;
  overflow: hidden;
}
.app-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.app-hero-icon {
  width: 80px; height: 80px;
  border-radius: 18px;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}
.app-hero-content h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; line-height: 1.2;
  color: #fff; margin-bottom: 1.5rem;
}
.hero-pillars {
  list-style: none;
  display: flex; flex-direction: column; gap: 0.5rem;
  margin-bottom: 2rem;
}
.hero-pillars li {
  font-size: 1rem; color: rgba(255,255,255,0.7);
  display: flex; align-items: center; gap: 0.75rem;
}
.hero-pillars li::before {
  content: '';
  width: 8px; height: 8px; border-radius: 50%;
  background: #C0392B; flex-shrink: 0;
}
.app-hero-screens {
  position: relative;
  display: flex; justify-content: center; align-items: flex-end;
  gap: -1rem;
}
.screen { border-radius: 24px; box-shadow: 0 16px 48px rgba(0,0,0,0.5); }
.screen-main { width: 52%; position: relative; z-index: 2; }
.screen-secondary { width: 44%; margin-bottom: -2rem; opacity: 0.8; }

.app-section { padding: 5rem 0; }
.app-section.light { background: #F5F5F5; }
.app-section.dark { background: #111; }
.app-section.dark .section-title { color: #fff; }

.section-body {
  font-size: 1.05rem; color: #555;
  max-width: 660px; line-height: 1.75;
  margin-top: 1rem;
}
.app-section.dark .section-body { color: rgba(255,255,255,0.55); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.feature-card {
  background: #1A1A1A;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 1.5rem;
}
.feature-card h3 {
  font-size: 0.95rem; font-weight: 700;
  color: #fff; margin-bottom: 0.5rem;
}
.feature-card p { font-size: 0.875rem; color: rgba(255,255,255,0.5); }

.screens-scroll {
  display: flex; gap: 1.5rem; overflow-x: auto;
  padding: 1.5rem 0; margin-top: 1rem;
  scrollbar-width: thin;
}
.screens-scroll img {
  height: 480px; width: auto; flex-shrink: 0;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.legal-section { padding: 3rem 0; }
.legal-links {
  display: flex; gap: 1.5rem; flex-wrap: wrap; margin-top: 1.5rem;
}
.legal-links a {
  font-size: 0.875rem; color: rgba(255,255,255,0.5);
  text-decoration: underline; text-underline-offset: 3px;
  transition: color 0.2s;
}
.legal-links a:hover { color: #fff; }

@media (max-width: 768px) {
  .app-hero-inner { grid-template-columns: 1fr; }
  .app-hero-screens { display: none; }
  .screens-scroll img { height: 360px; }
}
