/* ===== ランディングページ専用スタイル ===== */

/* ヒーロー */
.landing-hero {
  margin-bottom: 32px;
}

.landing-hero h1 {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.landing-hero p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 720px;
}

/* プロダクトカード */
.product-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 36px;
}

.product-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s;
}

.product-card:hover {
  box-shadow: var(--shadow-md);
}

.product-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.product-icon-blue {
  background: #ebf8ff;
  color: var(--accent-blue);
}

.product-icon-orange {
  background: #fffaf0;
  color: var(--accent-orange);
}

.product-card h2 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.product-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.product-list {
  list-style: none;
  margin-bottom: 20px;
}

.product-list li {
  font-size: 0.82rem;
  color: var(--text-secondary);
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}

.product-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--text-muted);
}

.product-btn {
  display: inline-block;
  padding: 10px 24px;
  border-radius: var(--radius-xs);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  transition: all 0.2s;
}

.product-btn:hover {
  transform: translateY(-1px);
}

.product-btn-blue {
  background: var(--accent-blue);
}
.product-btn-blue:hover { background: #3182ce; }

.product-btn-orange {
  background: var(--accent-orange);
}
.product-btn-orange:hover { background: #dd6b20; }

.product-btn-green {
  background: var(--accent-green);
}
.product-btn-green:hover { background: #2f855a; }

/* このサイトについて */
.about-section {
  margin-bottom: 36px;
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.about-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.about-icon {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.about-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.about-card p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* note記事セクション */
.note-section {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 28px;
  margin-bottom: 36px;
  box-shadow: var(--shadow-sm);
}

.note-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}

.note-card {
  background: var(--bg-body);
  border-radius: var(--radius-xs);
  padding: 16px 20px;
  transition: background 0.15s;
}

.note-card:hover {
  background: #e2e8f0;
}

.note-card p {
  font-size: 0.85rem;
  color: var(--text-primary);
  line-height: 1.6;
}

/* フッター */
.page-footer-landing {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.8;
  padding: 24px 0;
  border-top: 1px solid var(--border-light);
}

/* レスポンシブ */
@media (max-width: 1024px) {
  .about-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .product-cards {
    grid-template-columns: 1fr;
  }
  .note-cards {
    grid-template-columns: 1fr;
  }
  .landing-hero h1 {
    font-size: 1.4rem;
  }
}
