.project-page {
  padding: 40px 20px 120px;
  background: radial-gradient(circle at top, #ffffff 0%, #f7f6f4 60%);
}

.project-hero {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 20px;
  text-align: center;
}

.project-hero h1 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.2;
}

.project-hero p {
  max-width: 720px;
  margin: 0 auto;
  color: #3c3a37;
  font-size: 16px;
  font-family: "Roboto Serif", "Times New Roman", serif;
}

.project-hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.appstore-btn {
  background: #2f6ae0;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.appstore-btn .appstore-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.case-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.project-hero-actions .ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: #141414;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.project-hero-actions .ghost-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.project-hero-media {
  max-width: 1100px;
  margin: 32px auto 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.12);
}

.project-hero-media img {
  width: 100%;
  height: min(60vh, 520px);
  object-fit: cover;
  display: block;
}

.project-section {
  max-width: 980px;
  margin: 48px auto 0;
  display: grid;
  gap: 16px;
}

.project-section h2 {
  font-size: clamp(22px, 3vw, 30px);
}

.project-section p {
  color: #3c3a37;
  font-size: 15px;
  font-family: "Roboto Serif", "Times New Roman", serif;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.project-tags span {
  background: #f0efed;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #3f3d39;
}

.project-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.project-features li {
  list-style: none;
  background: #f7f6f4;
  border-radius: 16px;
  padding: 16px;
  color: #3c3a37;
  font-family: "Roboto Serif", "Times New Roman", serif;
  position: relative;
  padding-left: 34px;
}

.project-features li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 20px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #b62526;
}

.project-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.project-gallery img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.project-case {
  background: #f0efed;
  border-radius: 20px;
  padding: 24px;
  display: grid;
  gap: 12px;
}

.project-case p {
  margin: 0;
}

@media (max-width: 900px) {
  .project-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .project-page {
    padding: 24px 18px 90px;
  }

  .project-hero-media img {
    height: 42vh;
  }

  .project-gallery {
    grid-template-columns: 1fr;
  }
}
