/* ============================================
   Focus on Five Page
   ============================================ */
.fof-hero {
  background: #E8DCCA;
  padding: 24px 24px;
  position: relative;
  overflow: hidden;
}

.fof-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/images/textures/paper-grain.svg');
  background-repeat: repeat;
  opacity: 0.8;
  filter: contrast(150%) brightness(95%);
  pointer-events: none;
  z-index: 0;
}

.fof-hero__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.fof-hero__title {
  font-family: var(--font-body);
  font-size: 36px;
  font-weight: 800;
  color: #000;
  letter-spacing: 2px;
  margin-bottom: 4px;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.2);
}

.fof-hero__subtitle {
  font-size: 18px;
  color: #444;
  margin-bottom: 16px;
}

.fof-hero__rating {
  margin-bottom: 32px;
  text-align: center;
}

.fof-hero__accolade {
  width: 160px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.fof-screenshots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.fof-screenshots__img {
  width: 160px;
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.12));
}

.fof-screenshots--secondary {
  margin-top: 32px;
}

.fof-screenshots--secondary .fof-screenshots__img {
  width: 180px;
}

.fof-text {
  max-width: 700px;
  margin: 0 auto 24px;
  text-align: left;
  font-size: 15px;
  line-height: 1.7;
  color: #333;
}

.fof-text p {
  margin-bottom: 14px;
}

.fof-ai-badge {
  text-align: center;
  margin-bottom: 16px;
}

.fof-ai-badge__icon {
  width: 80px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.fof-categories {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.fof-categories li {
  padding: 4px 0;
  font-size: 15px;
  color: #333;
}

.fof-categories li::before {
  content: '• ';
  color: #999;
}

.fof-heading {
  font-size: 16px;
  font-weight: 700;
  color: #222;
  letter-spacing: 1px;
  margin: 28px 0 12px;
}

.fof-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.fof-features li {
  padding: 4px 0;
  font-size: 15px;
  color: #333;
  line-height: 1.6;
}

.fof-features li::before {
  content: '• ';
  color: #999;
}

.fof-pricing {
  background: rgba(255,255,255,0.6);
  padding: 16px 20px;
  border-radius: var(--radius);
  margin-top: 16px;
}

.fof-pricing > :first-child {
  margin-top: 0;
}

.fof-pricing p {
  margin-bottom: 8px;
  font-size: 15px;
}

.fof-pricing p:last-child {
  margin-bottom: 0;
}

/* ============================================
   Media Queries — 480px (Small Mobile)
   ============================================ */
@media (max-width: 480px) {
  .fof-screenshots__img {
    width: 120px;
  }

  .fof-screenshots--secondary .fof-screenshots__img {
    width: 140px;
  }

  .fof-hero__title {
    font-size: 28px;
  }
}
