/* ===================================================
   lp-service.css — 商材ページ共通スタイル（green LP theme）
   =================================================== */

/* ===== GREEN HERO ===== */
.lp-hero {
  background: linear-gradient(145deg, #0f2b1e 0%, #1b4332 50%, #2d6a4f 100%);
}
.lp-hero::before {
  background: radial-gradient(ellipse at 25% 75%, rgba(45,106,79,0.3) 0%, transparent 55%),
              radial-gradient(ellipse at 80% 20%, rgba(255,255,255,0.04) 0%, transparent 50%);
}
.lp-hero h1 em { color: #a8d4b8; }
.lp-cta { background: linear-gradient(145deg, #0f2b1e, #1b4332); }

/* ===== PAIN CARD — green accent ===== */
.pain-card { border-left-color: #7a6332; }
.pain-card h3 i { color: #7a6332; }

/* ===== HIGHLIGHT BOX ===== */
.highlight-box {
  max-width: 720px; margin: 0 auto;
  background: var(--white);
  border-left: 4px solid #2d6a4f;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 32px 36px;
}
.highlight-box p { font-size: 1.02rem; color: var(--text); line-height: 1.9; }

/* ===== NUM BLOCKS ===== */
.num-blocks {
  display: flex; flex-direction: column; gap: 0;
  max-width: 720px; margin: 0 auto; counter-reset: num-block;
}
.num-block {
  counter-increment: num-block;
  display: grid; grid-template-columns: 56px 1fr; gap: 20px;
  padding: 28px 0; border-bottom: 1px solid var(--border);
}
.num-block:last-child { border-bottom: none; }
.num-block-num {
  font-family: 'Noto Serif JP', serif;
  font-size: 2rem; font-weight: 700; line-height: 1;
  color: rgba(45,106,79,0.6);
}
.num-block-num::before { content: counter(num-block, decimal-leading-zero); }
.num-block h3 { font-size: 1.05rem; font-weight: 600; color: var(--primary-dark); margin-bottom: 8px; }
.num-block p { font-size: 0.95rem; color: var(--text-light); line-height: 1.8; }

/* ===== DELIVERABLE CARDS ===== */
.dlv-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.dlv-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 24px;
  display: flex; flex-direction: column; transition: all 0.3s;
}
.dlv-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.dlv-card-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: linear-gradient(135deg, #1b4332, #2d6a4f);
  color: var(--white); display: flex; align-items: center;
  justify-content: center; font-size: 1.1rem; margin-bottom: 14px;
}
.dlv-card h4 { font-size: 1rem; font-weight: 600; color: var(--primary-dark); margin-bottom: 6px; }
.dlv-card .dlv-format { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 10px; }
.dlv-card p { font-size: 0.92rem; color: var(--text-light); line-height: 1.7; flex: 1; }
.dlv-price {
  margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--border);
  font-size: 1.05rem; font-weight: 700; color: var(--accent); text-align: center;
}
.dlv-price small {
  display: block; font-size: 0.78rem; font-weight: 400;
  color: var(--text-muted); margin-top: 2px;
}

/* ===== CTA NOTE ===== */
.cta-note { font-size: 0.88rem; color: rgba(255,255,255,0.7); margin-top: 16px; }

/* ===== SCENE CARDS ===== */
.scene-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.scene-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px 22px;
}
.scene-card .scene-tag {
  display: inline-block; font-size: 0.75rem; font-weight: 600;
  color: #1b4332; background: rgba(45,106,79,0.1);
  padding: 3px 10px; border-radius: 50px; margin-bottom: 10px;
}
.scene-card h4 {
  font-size: 0.95rem; font-weight: 600; color: var(--primary-dark);
  margin-bottom: 10px; line-height: 1.5;
}
.scene-card h4 i { color: var(--accent); font-size: 0.85rem; margin-right: 6px; }
.scene-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }

/* ===== ARTICLE HERO (縮小パディング + ドットテクスチャ) ===== */
.lp-hero--article {
  padding: 80px 24px 72px !important;
}
.lp-hero--article::after {
  content: '';
  position: absolute; inset: 0; opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='10' cy='10' r='1.5' fill='%23fff'/%3E%3C/svg%3E");
  background-size: 20px 20px; pointer-events: none;
}
.lp-hero--article .lp-hero-badge {
  color: #e0b35a !important;
  border-color: rgba(224,179,90,0.35) !important;
  background: rgba(224,179,90,0.1) !important;
}

/* ===== HIGHLIGHT BOX SPACING ===== */
.lp-section-header + .highlight-box { margin-top: 32px; }
.highlight-box p + p { margin-top: 16px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  .pain-grid,
  .dlv-grid,
  .scene-grid,
  .upsell-grid,
  .feature-grid { grid-template-columns: 1fr; }
  .lp-hero--article { padding: 64px 16px 56px !important; }
}
