/* =============================================
   torimax-diy.css
   トリマックス DIYプランページ 個別スタイル
   ============================================= */

/* ===== HERO ===== */
.hero {
  background: var(--color-wood-light);
  border-bottom: 1px solid var(--color-line);
  padding: 64px 24px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 60px,
    rgba(0,0,0,0.03) 60px,
    rgba(0,0,0,0.03) 61px
  );
}
.hero-inner { position: relative; max-width: 640px; margin: 0 auto; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-wood);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 28px;
  letter-spacing: 0.05em;
}
.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: rgba(255,255,255,0.7);
  border-radius: 50%;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(26px, 5vw, 38px);
  font-weight: 900;
  color: var(--color-navy);
  line-height: 1.4;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.hero h1 em {
  font-style: normal;
  color: var(--color-wood-dark);
}
.hero-sub {
  color: var(--color-text-muted);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 18px;
}
.hero-env {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-bottom: 18px;
}
.hero-badges {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.pill {
  display: inline-block;
  font-size: 12px;
  padding: 4px 14px;
  border-radius: 99px;
  border: 1px solid rgba(0,0,0,0.15);
  color: var(--color-text-muted);
  background: rgba(255,255,255,0.7);
}
.cta-note {
  margin-top: 12px;
  font-size: 12px;
  color: var(--color-text-muted);
}

/* ===== LIMITS ===== */
.limits-section {
  background: var(--color-bg-warm);
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}
.limits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}
.limit-card {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 20px 16px;
  text-align: center;
}
.limit-card .icon { font-size: 20px; margin-bottom: 10px; display: block; }
.limit-card .val {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.2;
  margin-bottom: 6px;
}
.limit-card .lbl { font-size: 12px; color: var(--color-text-muted); }
.limit-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--color-text-muted);
  text-align: center;
  line-height: 1.7;
}

/* ===== STEPS ===== */
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--color-line);
}
.step:first-child { padding-top: 0; }
.step:last-child { border-bottom: none; padding-bottom: 0; }
.step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-navy);
  color: #fff;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.step-body .title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--color-navy);
}
.step-body .desc { font-size: 14px; color: var(--color-text-muted); line-height: 1.7; }

/* ===== COMPARE ===== */
.compare-section {
  background: var(--color-bg-warm);
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}
.compare-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.compare-table th, .compare-table td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--color-line);
  text-align: left;
}
.compare-table th {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-text-muted);
  background: #fff;
  letter-spacing: 0.05em;
}
.compare-table th:nth-child(2) {
  background: var(--color-wood);
  color: #fff;
  text-align: center;
  border-radius: 8px 8px 0 0;
}
.compare-table th:nth-child(3) { text-align: center; }
.compare-table td:nth-child(2) {
  background: var(--color-wood-light);
  color: var(--color-navy);
  text-align: center;
  font-weight: 700;
  font-family: var(--font-display);
}
.compare-table td:nth-child(3) { text-align: center; color: var(--color-text-muted); }
.compare-table tr:last-child td:nth-child(2) { border-radius: 0 0 8px 8px; }
.compare-table tr:last-child td { border-bottom: none; }
.free-tag {
  display: inline-block;
  background: var(--color-wood);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 99px;
  margin-left: 4px;
}

/* ===== COMING SOON ===== */
.coming-soon-box {
  background: rgba(255,255,255,0.75);
  border: 1.5px solid var(--color-wood);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin: 8px auto 28px;
  max-width: 480px;
}
.coming-soon-label {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-wood-dark);
  margin-bottom: 10px;
}
.coming-soon-text {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.8;
}

/* =============================================
   PROプランアップセルCTA
   ============================================= */

.pro-upsell-cta {
  margin-top: 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.pro-upsell-price {
  font-size: 14px;
  color: var(--color-text-muted);
}

.pro-upsell-price strong {
  color: var(--color-navy);
  font-size: 17px;
}

.pro-upsell-price span {
  font-size: 12px;
}

.btn-pro-trial {
  display: inline-block;
  background: var(--color-wood);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  padding: 14px 40px;
  border-radius: 4px;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: background 0.2s, transform 0.15s;
}

.btn-pro-trial:hover {
  background: var(--color-wood-dark);
  transform: translateY(-1px);
}
