/* ===== App Page (アプリ別トップページ、 例: /full-combo-trial/) =====
   NOTE: :root CSS変数は /style.css に依存する。 HTML では style.css → app.css の順にロードすること。
*/

.app-page {
  background-color: var(--color-bg);
}

.app-main {
  padding: clamp(40px, 8vw, 80px) 0 clamp(60px, 10vw, 100px);
}

/* ----- Hero ----- */
.app-hero {
  text-align: center;
  margin-bottom: clamp(48px, 8vw, 72px);
}

.app-icon {
  width: clamp(96px, 18vw, 140px);
  height: clamp(96px, 18vw, 140px);
  border-radius: 22%;
  display: block;
  margin: 0 auto 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.app-name {
  font-size: clamp(1.8rem, 4.5vw, 2.4rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.app-tagline {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--color-text-light);
  margin-bottom: 28px;
}

.app-download-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 8px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--color-text);
  color: var(--color-white);
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: background 0.2s;
}

.store-badge:hover {
  background: var(--color-accent);
}

.store-badge svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* ----- Section blocks ----- */
.app-section {
  margin-bottom: clamp(40px, 6vw, 56px);
}

.app-section h2 {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--color-accent);
  display: inline-block;
}

.app-summary p {
  margin-bottom: 14px;
  line-height: 1.9;
}

.app-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.app-feature-list li {
  padding: 8px 0 8px 24px;
  position: relative;
  line-height: 1.8;
}

.app-feature-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 18px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
}

.app-info-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--color-border);
  background: var(--color-white);
}

.app-info-table th,
.app-info-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
  vertical-align: top;
}

.app-info-table tr:last-child th,
.app-info-table tr:last-child td {
  border-bottom: none;
}

.app-info-table th {
  width: 30%;
  background: var(--color-bg-alt);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-text-light);
}

/* ----- Social row under store badges ----- */
.app-social-row {
  margin-top: 16px;
  text-align: center;
}

/* ----- Manual CTA ----- */
.app-cta {
  text-align: center;
  margin-top: 32px;
}

.app-cta-button {
  display: inline-block;
  padding: 14px 32px;
  background: var(--color-accent);
  color: var(--color-white);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.2s;
}

.app-cta-button:hover {
  background: var(--color-accent-hover);
}

/* ----- Mobile adjustments ----- */
@media (max-width: 600px) {
  .app-info-table th,
  .app-info-table td {
    padding: 10px 12px;
    font-size: 0.9rem;
  }
}
