/* 業務棚卸しシート ダウンロードページ専用スタイル */
/* 既存のデザイントークン（style.css）を継承 */

/* ファーストビュー */
.tanaoroshi-hero {
  padding: 120px 0 80px;
  background: linear-gradient(180deg, var(--deep-night) 0%, var(--navy) 100%);
  text-align: center;
}

.tanaoroshi-hero-content {
  max-width: 720px;
  margin: 0 auto;
}

.tanaoroshi-label {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(0, 229, 160, 0.1);
  border: 1px solid rgba(0, 229, 160, 0.3);
  border-radius: 100px;
  color: var(--aurora-green);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.tanaoroshi-hero h1 {
  font-size: clamp(28px, 6vw, 48px);
  font-weight: 900;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.tanaoroshi-subtitle {
  font-size: clamp(18px, 4vw, 24px);
  font-weight: 700;
  color: var(--aurora-green);
  margin-bottom: 24px;
}

.tanaoroshi-lead {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.tanaoroshi-screenshot {
  margin: 32px auto;
  max-width: 560px;
}

.screenshot-placeholder {
  aspect-ratio: 16 / 10;
  background: rgba(0, 229, 160, 0.05);
  border: 2px dashed rgba(0, 229, 160, 0.3);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 16px;
}

.screenshot-placeholder .screenshot-note {
  font-size: 13px;
  opacity: 0.6;
  margin-top: 8px;
}

.tanaoroshi-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  padding: 20px 48px;
}

/* ステップセクション */
.tanaoroshi-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.tanaoroshi-step {
  background: var(--frost);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: var(--transition);
}

.tanaoroshi-step:hover {
  border-color: var(--aurora-green);
  transform: translateY(-4px);
}

.step-number {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--aurora-green), var(--aurora-teal));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--deep-night);
}

.tanaoroshi-step h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.tanaoroshi-step p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* 情報エリア */
.tanaoroshi-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 48px;
  margin-top: 48px;
  padding: 24px;
  background: rgba(0, 229, 160, 0.05);
  border-radius: 12px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.info-label {
  font-size: 13px;
  color: var(--text-muted);
  padding: 4px 12px;
  background: rgba(0, 229, 160, 0.1);
  border-radius: 4px;
}

.info-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
}

/* フォームセクション */
#download-form {
  padding: 80px 0;
}

#download-form .contact-form-wrapper {
  max-width: 560px;
  margin: 0 auto;
}

/* チェックボックスカスタマイズ */
.form-checkbox {
  margin-bottom: 24px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 15px;
  color: var(--text-primary);
}

.checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.checkbox-custom {
  width: 22px;
  height: 22px;
  border: 2px solid var(--border-color);
  border-radius: 4px;
  background: rgba(5, 8, 15, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
  background: var(--aurora-green);
  border-color: var(--aurora-green);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
  content: '';
  width: 6px;
  height: 10px;
  border: solid var(--deep-night);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-bottom: 2px;
}

.checkbox-label input[type="checkbox"]:focus + .checkbox-custom {
  box-shadow: 0 0 0 3px rgba(0, 229, 160, 0.2);
}

.checkbox-text {
  line-height: 1.5;
}

/* プライバシーノート */
.privacy-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 24px;
  line-height: 1.8;
}

.privacy-note a {
  color: var(--aurora-green);
  text-decoration: underline;
}

/* 提供元セクション */
.tanaoroshi-provider {
  max-width: 640px;
  margin: 0 auto;
}

.provider-name {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.provider-description {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 32px;
}

/* フォームステータス成功時のスタイル */
.form-status.success {
  background: rgba(0, 229, 160, 0.1);
  border: 1px solid var(--aurora-green);
  color: var(--aurora-green);
  padding: 24px;
  border-radius: 12px;
  text-align: center;
  font-size: 15px;
  line-height: 1.8;
}

.form-status.error {
  background: rgba(244, 162, 38, 0.1);
  border: 1px solid var(--amber);
  color: var(--amber);
  padding: 24px;
  border-radius: 12px;
  text-align: center;
  font-size: 15px;
  line-height: 1.8;
}

/* レスポンシブ */
@media (max-width: 768px) {
  .tanaoroshi-hero {
    padding: 100px 0 60px;
  }

  .tanaoroshi-cta {
    width: 100%;
    justify-content: center;
    padding: 18px 32px;
  }

  .tanaoroshi-steps {
    gap: 20px;
  }

  .tanaoroshi-step {
    padding: 24px;
  }

  .tanaoroshi-info {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .info-item {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .tanaoroshi-hero h1 {
    font-size: 26px;
  }

  .tanaoroshi-subtitle {
    font-size: 18px;
  }

  .tanaoroshi-lead {
    font-size: 15px;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}
